Embedpress_Calendar.php
4 years ago
Embedpress_Document.php
4 years ago
Embedpress_Elementor.php
4 years ago
Embedpress_Pdf.php
4 years ago
Embedpress_Document.php
327 lines
| 1 | <?php |
| 2 | |
| 3 | namespace EmbedPress\Elementor\Widgets; |
| 4 | |
| 5 | |
| 6 | use \Elementor\Controls_Manager as Controls_Manager; |
| 7 | use \Elementor\Modules\DynamicTags\Module as TagsModule; |
| 8 | use \Elementor\Widget_Base as Widget_Base; |
| 9 | use \Elementor\Plugin; |
| 10 | use EmbedPress\Includes\Traits\Branding; |
| 11 | |
| 12 | ( defined( 'ABSPATH' ) ) or die( "No direct script access allowed." ); |
| 13 | |
| 14 | class Embedpress_Document extends Widget_Base |
| 15 | { |
| 16 | use Branding; |
| 17 | protected $pro_class = ''; |
| 18 | protected $pro_text = ''; |
| 19 | public function get_name() |
| 20 | { |
| 21 | return 'embedpres_document'; |
| 22 | } |
| 23 | |
| 24 | public function get_title() |
| 25 | { |
| 26 | return esc_html__( 'EmbedPress Document', 'embedpress' ); |
| 27 | } |
| 28 | |
| 29 | public function get_categories() |
| 30 | { |
| 31 | return ['embedpress']; |
| 32 | } |
| 33 | |
| 34 | public function get_custom_help_url() |
| 35 | { |
| 36 | return 'https://embedpress.com/documentation'; |
| 37 | } |
| 38 | |
| 39 | public function get_icon() |
| 40 | { |
| 41 | return 'icon-document'; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Get widget keywords. |
| 46 | * |
| 47 | * Retrieve the list of keywords the widget belongs to. |
| 48 | * |
| 49 | * @return array Widget keywords. |
| 50 | * @since 2.5.5 |
| 51 | * @access public |
| 52 | * |
| 53 | */ |
| 54 | public function get_keywords() |
| 55 | { |
| 56 | return ['embedpress', 'pdf', 'doc', 'docx', 'ppt', 'pptx', 'xls', 'xlsx', 'embedpress-document']; |
| 57 | } |
| 58 | |
| 59 | protected function register_controls() |
| 60 | { |
| 61 | $this->pro_class = is_embedpress_pro_active() ? '': 'embedpress-pro-control'; |
| 62 | $this->pro_text = is_embedpress_pro_active() ? '': '<sup class="embedpress-pro-label" style="color:red">'.__('Pro', 'embedpress').'</sup>'; |
| 63 | /** |
| 64 | * EmbedPress Content Settings |
| 65 | */ |
| 66 | $this->start_controls_section( |
| 67 | 'embedpress_document_content_settings', |
| 68 | [ |
| 69 | 'label' => esc_html__( 'Content Settings', 'embedpress' ), |
| 70 | ] |
| 71 | ); |
| 72 | |
| 73 | $this->add_control( |
| 74 | 'embedpress_document_type', |
| 75 | [ |
| 76 | 'label' => __( 'Document Type', 'embedpress' ), |
| 77 | 'type' => Controls_Manager::SELECT, |
| 78 | 'default' => 'file', |
| 79 | 'options' => [ |
| 80 | 'file' => __( 'File', 'embedpress' ), |
| 81 | 'url' => __( 'URL', 'embedpress' ) |
| 82 | ], |
| 83 | ] |
| 84 | ); |
| 85 | |
| 86 | $this->add_control( |
| 87 | 'embedpress_document_Uploader', |
| 88 | [ |
| 89 | |
| 90 | 'label' => __( 'Upload File', 'embedpress' ), |
| 91 | 'type' => Controls_Manager::MEDIA, |
| 92 | 'dynamic' => [ |
| 93 | 'active' => true, |
| 94 | 'categories' => [ |
| 95 | TagsModule::MEDIA_CATEGORY, |
| 96 | ], |
| 97 | ], |
| 98 | 'media_type' => [ |
| 99 | 'application/pdf', |
| 100 | 'application/msword', |
| 101 | 'application/vnd.ms-powerpoint', |
| 102 | 'application/vnd.ms-excel', |
| 103 | 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', |
| 104 | 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', |
| 105 | 'application/vnd.openxmlformats-officedocument.presentationml.presentation' |
| 106 | ], |
| 107 | 'description' => __( 'Upload a file or pick one from your media library for embed. Supported File Type: PDF, DOC/DOCX, PPT/PPTX, XLS/XLSX etc.', |
| 108 | 'embedpress' ), |
| 109 | 'condition' => [ |
| 110 | 'embedpress_document_type' => 'file' |
| 111 | ], |
| 112 | ] |
| 113 | ); |
| 114 | |
| 115 | $this->add_control( |
| 116 | 'embedpress_document_file_link', |
| 117 | [ |
| 118 | 'label' => __( 'URL', 'embedpress' ), |
| 119 | 'type' => Controls_Manager::URL, |
| 120 | 'placeholder' => __( 'https://your-link.com/file.pdf', 'embedpress' ), |
| 121 | 'show_external' => false, |
| 122 | 'default' => [ |
| 123 | 'url' => '' |
| 124 | ], |
| 125 | 'condition' => [ |
| 126 | 'embedpress_document_type' => 'url' |
| 127 | ], |
| 128 | ] |
| 129 | ); |
| 130 | |
| 131 | $this->add_control( |
| 132 | 'embedpress_elementor_document_width', |
| 133 | [ |
| 134 | 'label' => __( 'Width', 'embedpress' ), |
| 135 | 'type' => Controls_Manager::SLIDER, |
| 136 | 'separator' => 'before', |
| 137 | 'default' => [ |
| 138 | 'unit' => 'px', |
| 139 | 'size' => 600, |
| 140 | ], |
| 141 | 'range' => [ |
| 142 | 'px' => [ |
| 143 | 'min' => 6, |
| 144 | 'max' => 1000, |
| 145 | ], |
| 146 | ], |
| 147 | 'selectors' => [ |
| 148 | '{{WRAPPER}} .embedpress-document-embed iframe' => 'width: {{SIZE}}{{UNIT}} !important; max-width: 100%', |
| 149 | '{{WRAPPER}} .embedpress-document-embed .pdfobject-container' => 'width: {{SIZE}}{{UNIT}} !important; max-width: 100%', |
| 150 | '{{WRAPPER}} .embedpress-document-embed' => 'width: {{SIZE}}{{UNIT}} !important; max-width: 100%', |
| 151 | ], |
| 152 | ] |
| 153 | ); |
| 154 | |
| 155 | $this->add_control( |
| 156 | 'embedpress_elementor_document_height', |
| 157 | [ |
| 158 | 'label' => __( 'Height', 'embedpress' ), |
| 159 | 'type' => Controls_Manager::SLIDER, |
| 160 | 'default' => [ |
| 161 | 'unit' => 'px', |
| 162 | 'size' => 600, |
| 163 | ], |
| 164 | 'range' => [ |
| 165 | 'px' => [ |
| 166 | 'min' => 6, |
| 167 | 'max' => 1000, |
| 168 | ], |
| 169 | ], |
| 170 | 'selectors' => [ |
| 171 | '{{WRAPPER}}' => 'height: {{SIZE}}{{UNIT}};', |
| 172 | '{{WRAPPER}} .embedpress-document-embed iframe' => 'height: {{SIZE}}{{UNIT}};', |
| 173 | '{{WRAPPER}} .embedpress-document-embed .pdfobject-container' => 'height: {{SIZE}}{{UNIT}};', |
| 174 | ], |
| 175 | ] |
| 176 | ); |
| 177 | |
| 178 | $this->add_responsive_control( |
| 179 | 'embedpress_elementor_document_align', |
| 180 | [ |
| 181 | 'label' => __( 'Alignment', 'embedpress' ), |
| 182 | 'type' => Controls_Manager::CHOOSE, |
| 183 | 'options' => [ |
| 184 | 'left' => [ |
| 185 | 'title' => __( 'Left', 'embedpress' ), |
| 186 | 'icon' => 'eicon-text-align-left', |
| 187 | ], |
| 188 | 'center' => [ |
| 189 | 'title' => __( 'Center', 'embedpress' ), |
| 190 | 'icon' => 'eicon-text-align-center', |
| 191 | ], |
| 192 | 'right' => [ |
| 193 | 'title' => __( 'Right', 'embedpress' ), |
| 194 | 'icon' => 'eicon-text-align-right', |
| 195 | ] |
| 196 | ], |
| 197 | 'prefix_class' => 'elementor%s-align-', |
| 198 | 'default' => 'center', |
| 199 | ] |
| 200 | ); |
| 201 | |
| 202 | $this->add_control( |
| 203 | 'embedpress_document_powered_by', |
| 204 | [ |
| 205 | 'label' => __( 'Powered By', 'embedpress' ), |
| 206 | 'type' => Controls_Manager::SWITCHER, |
| 207 | 'label_on' => __( 'Show', 'embedpress' ), |
| 208 | 'label_off' => __( 'Hide', 'embedpress' ), |
| 209 | 'return_value' => 'yes', |
| 210 | 'default' => apply_filters( 'embedpress_document_powered_by_control', 'yes' ), |
| 211 | ] |
| 212 | ); |
| 213 | |
| 214 | $this->init_branding_controls( 'document'); |
| 215 | |
| 216 | $this->end_controls_section(); |
| 217 | |
| 218 | if (! is_embedpress_pro_active()) { |
| 219 | $this->start_controls_section( |
| 220 | 'embedpress_pro_section', |
| 221 | [ |
| 222 | 'label' => __('Go Premium for More Features', 'embedpress'), |
| 223 | ] |
| 224 | ); |
| 225 | |
| 226 | $this->add_control( |
| 227 | 'embedpress_pro_cta', |
| 228 | [ |
| 229 | 'label' => __('Unlock more possibilities', 'embedpress'), |
| 230 | 'type' => Controls_Manager::CHOOSE, |
| 231 | 'options' => [ |
| 232 | '1' => [ |
| 233 | 'title' => '', |
| 234 | 'icon' => 'eicon-lock', |
| 235 | ], |
| 236 | ], |
| 237 | 'default' => '1', |
| 238 | 'description' => '<span class="pro-feature"> Get the <a href="https://wpdeveloper.com/in/upgrade-embedpress" target="_blank">Pro version</a> for more provider support and customization options.</span>', |
| 239 | ] |
| 240 | ); |
| 241 | |
| 242 | $this->end_controls_section(); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | private function is_pdf( $url ) |
| 247 | { |
| 248 | $arr = explode( '.', $url ); |
| 249 | return end( $arr ) === 'pdf'; |
| 250 | } |
| 251 | |
| 252 | protected function render() |
| 253 | { |
| 254 | $settings = $this->get_settings(); |
| 255 | $url = $this->get_file_url(); |
| 256 | $id = 'embedpress-pdf-' . $this->get_id(); |
| 257 | $dimension = "width: {$settings['embedpress_elementor_document_width']['size']}px;height: {$settings['embedpress_elementor_document_height']['size']}px"; |
| 258 | $this->add_render_attribute( 'embedpres-pdf-render', [ |
| 259 | 'class' => ['embedpress-embed-document-pdf', $id], |
| 260 | 'data-emid' => $id |
| 261 | ] ); |
| 262 | $this->add_render_attribute( 'embedpress-document', [ |
| 263 | 'class' => ['embedpress-document-embed', 'ep-doc-'.md5( $id), 'ose-document'] |
| 264 | ] ); |
| 265 | ?> |
| 266 | <div <?php echo $this->get_render_attribute_string( 'embedpress-document' ); ?> style="<?php echo esc_attr( $dimension); ?>; max-width:100%; display: inline-block"> |
| 267 | <?php |
| 268 | do_action( 'embedpress_document_after_embed', $settings, $url, $id, $this); |
| 269 | ?> |
| 270 | <?php if ( $url != '' ) { |
| 271 | if ( $this->is_pdf( $url ) ) { |
| 272 | $this->add_render_attribute( 'embedpres-pdf-render', 'data-emsrc', $url ); |
| 273 | ?> |
| 274 | <div <?php echo $this->get_render_attribute_string( 'embedpres-pdf-render' ); ?>> |
| 275 | </div> |
| 276 | <?php |
| 277 | |
| 278 | if ( Plugin::$instance->editor->is_edit_mode() ) { |
| 279 | $this->render_editor_script( $id, $url ); |
| 280 | } |
| 281 | |
| 282 | } else { |
| 283 | $view_link = 'https://docs.google.com/viewer?url=' . $url . '&embedded=true'; |
| 284 | ?> |
| 285 | <div> |
| 286 | <iframe allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true" style="<?php echo esc_attr( $dimension); ?>; max-width:100%;" src="<?php echo esc_url( $view_link); ?>"></iframe> |
| 287 | </div> |
| 288 | |
| 289 | <?php |
| 290 | } |
| 291 | if ( $settings[ 'embedpress_document_powered_by' ] === 'yes' ) { |
| 292 | printf( '<p class="embedpress-el-powered">%s</p>', __( 'Powered By EmbedPress', 'embedpress' ) ); |
| 293 | } |
| 294 | } |
| 295 | ?> |
| 296 | </div> |
| 297 | |
| 298 | <?php |
| 299 | } |
| 300 | |
| 301 | private function get_file_url() |
| 302 | { |
| 303 | $settings = $this->get_settings(); |
| 304 | return $settings[ 'embedpress_document_type' ] === 'url' ? $settings[ 'embedpress_document_file_link' ][ 'url' ] : $settings[ 'embedpress_document_Uploader' ][ 'url' ]; |
| 305 | } |
| 306 | |
| 307 | protected function render_editor_script( $id, $url ) |
| 308 | { |
| 309 | ?> |
| 310 | <script> |
| 311 | (function ($) { |
| 312 | 'use strict'; |
| 313 | $(document).ready(function () { |
| 314 | var selector = $('.embedpress-embed-document-pdf'); |
| 315 | let option = { |
| 316 | forceObject: false, |
| 317 | }; |
| 318 | if (selector.length) { |
| 319 | PDFObject.embed("<?php echo $url; ?>", "<?php echo '.' . $id; ?>", option); |
| 320 | } |
| 321 | }); |
| 322 | })(jQuery); |
| 323 | </script> |
| 324 | <?php |
| 325 | } |
| 326 | } |
| 327 |