Plugin Directory

Changeset 3427581


Ignore:
Timestamp:
12/26/2025 06:57:50 AM (3 weeks ago)
Author:
coderzstudio
Message:

release version 1.0.17

Location:
custom-iframe
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • custom-iframe/tags/1.0.17/custom-iframe-widget.php

    r3416121 r3427581  
    44 * Plugin URI: https://coderzstudio.com/plugins/custom-iframe
    55 * Description: An advanced Elementor widget to embed iFrames with customizable options.
    6  * Version: 1.0.16
     6 * Version: 1.0.17
    77 * Author: Coderz Studio
    88 * Author URI: https://coderzstudio.com/
     
    1919 * Requires at least: 5.8
    2020 * Requires PHP: 7.4
    21  * Elementor tested up to: 3.33
    22  * Elementor Pro tested up to: 3.33
     21 * Elementor tested up to: 3.34
     22 * Elementor Pro tested up to: 3.34
    2323 */
    2424
     
    5151
    5252// Define constants.
    53 define( 'CUSTIF_VERSION', '1.0.16' );
     53define( 'CUSTIF_VERSION', '1.0.17' );
    5454define( 'CUSTIF_URL', plugin_dir_url( __FILE__ ) );
    5555define( 'CUSTIF_PATH', plugin_dir_path( __FILE__ ) );
  • custom-iframe/tags/1.0.17/languages/custom-iframe.pot

    r3416121 r3427581  
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-12-10T07:45:10+00:00\n"
     12"POT-Creation-Date: 2025-12-10T08:46:22+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
     
    695695msgstr ""
    696696
     697#: widget/class-custom-iframe-widget.php:1112
     698msgid "Device Frame"
     699msgstr ""
     700
    697701#: widget/class-custom-iframe-widget.php:1133
    698702msgid "Style"
  • custom-iframe/tags/1.0.17/readme.txt

    r3416121 r3427581  
    11=== Custom iFrame for Elementor – Embed Pdf, Maps, Videos, & Websites Easily ===
    22Contributors: coderzstudio
    3 Tags: embed, embed pdf, iframe, elementor, embed youtube
     3Tags: embed pdf, iframe, elementor, embed youtube, 3d flip book
    44Requires at least: 5.8
    55Tested up to: 6.9
    6 Stable tag: 1.0.16
     6Stable tag: 1.0.17
    77Requires PHP: 7.4
    88License: GPL-2.0+
     
    118118== Changelog ==
    119119
     120= 1.0.17 (December 26, 2025) =
     121* Compatibility: Elementor Version Free & Pro 3.34.
     122
    120123= 1.0.16 (December 10, 2025) =
    121124* Improvements : Controller UI Improvements.
  • custom-iframe/tags/1.0.17/widget/class-custom-iframe-widget.php

    r3416121 r3427581  
    261261                    'source'   => 'Pdf',
    262262                    'pdf_type' => 'url',
     263                ),
     264            )
     265        );
     266
     267        $this->add_control(
     268            'pdf_view_mode',
     269            array(
     270                'label'        => __( '3D Flipbook View', 'custom-iframe' ),
     271                'type'         => Controls_Manager::SWITCHER,
     272                'label_on'     => __( 'Yes', 'custom-iframe' ),
     273                'label_off'    => __( 'No', 'custom-iframe' ),
     274                'return_value' => 'yes',
     275                'default'      => '',
     276                'condition'    => array(
     277                    'source' => 'Pdf',
     278                ),
     279                'separator'  => 'before',
     280            )
     281        );
     282
     283        $this->add_control(
     284            'pdf_view_mode_pro',
     285            array(
     286                'label'       => '',
     287                'type'        => Controls_Manager::RAW_HTML,
     288                'default'     => '',
     289                'description' => '',
     290                'raw'         => $this->pro_plugin_notice(),
     291                'condition' => array(
     292                    'source' => 'Pdf',
     293                    'pdf_view_mode' => 'yes',
    263294                ),
    264295            )
  • custom-iframe/trunk/custom-iframe-widget.php

    r3416121 r3427581  
    44 * Plugin URI: https://coderzstudio.com/plugins/custom-iframe
    55 * Description: An advanced Elementor widget to embed iFrames with customizable options.
    6  * Version: 1.0.16
     6 * Version: 1.0.17
    77 * Author: Coderz Studio
    88 * Author URI: https://coderzstudio.com/
     
    1919 * Requires at least: 5.8
    2020 * Requires PHP: 7.4
    21  * Elementor tested up to: 3.33
    22  * Elementor Pro tested up to: 3.33
     21 * Elementor tested up to: 3.34
     22 * Elementor Pro tested up to: 3.34
    2323 */
    2424
     
    5151
    5252// Define constants.
    53 define( 'CUSTIF_VERSION', '1.0.16' );
     53define( 'CUSTIF_VERSION', '1.0.17' );
    5454define( 'CUSTIF_URL', plugin_dir_url( __FILE__ ) );
    5555define( 'CUSTIF_PATH', plugin_dir_path( __FILE__ ) );
  • custom-iframe/trunk/languages/custom-iframe.pot

    r3416121 r3427581  
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-12-10T07:45:10+00:00\n"
     12"POT-Creation-Date: 2025-12-10T08:46:22+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
     
    695695msgstr ""
    696696
     697#: widget/class-custom-iframe-widget.php:1112
     698msgid "Device Frame"
     699msgstr ""
     700
    697701#: widget/class-custom-iframe-widget.php:1133
    698702msgid "Style"
  • custom-iframe/trunk/readme.txt

    r3416121 r3427581  
    11=== Custom iFrame for Elementor – Embed Pdf, Maps, Videos, & Websites Easily ===
    22Contributors: coderzstudio
    3 Tags: embed, embed pdf, iframe, elementor, embed youtube
     3Tags: embed pdf, iframe, elementor, embed youtube, 3d flip book
    44Requires at least: 5.8
    55Tested up to: 6.9
    6 Stable tag: 1.0.16
     6Stable tag: 1.0.17
    77Requires PHP: 7.4
    88License: GPL-2.0+
     
    118118== Changelog ==
    119119
     120= 1.0.17 (December 26, 2025) =
     121* Compatibility: Elementor Version Free & Pro 3.34.
     122
    120123= 1.0.16 (December 10, 2025) =
    121124* Improvements : Controller UI Improvements.
  • custom-iframe/trunk/widget/class-custom-iframe-widget.php

    r3416121 r3427581  
    261261                    'source'   => 'Pdf',
    262262                    'pdf_type' => 'url',
     263                ),
     264            )
     265        );
     266
     267        $this->add_control(
     268            'pdf_view_mode',
     269            array(
     270                'label'        => __( '3D Flipbook View', 'custom-iframe' ),
     271                'type'         => Controls_Manager::SWITCHER,
     272                'label_on'     => __( 'Yes', 'custom-iframe' ),
     273                'label_off'    => __( 'No', 'custom-iframe' ),
     274                'return_value' => 'yes',
     275                'default'      => '',
     276                'condition'    => array(
     277                    'source' => 'Pdf',
     278                ),
     279                'separator'  => 'before',
     280            )
     281        );
     282
     283        $this->add_control(
     284            'pdf_view_mode_pro',
     285            array(
     286                'label'       => '',
     287                'type'        => Controls_Manager::RAW_HTML,
     288                'default'     => '',
     289                'description' => '',
     290                'raw'         => $this->pro_plugin_notice(),
     291                'condition' => array(
     292                    'source' => 'Pdf',
     293                    'pdf_view_mode' => 'yes',
    263294                ),
    264295            )
Note: See TracChangeset for help on using the changeset viewer.