Plugin Directory

Changeset 2808866


Ignore:
Timestamp:
11/01/2022 03:18:37 PM (3 years ago)
Author:
soliddigital
Message:

Update to version 1.3.0 from GitHub

Location:
solid-dynamics
Files:
150 added
4 deleted
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solid-dynamics/tags/1.3.0/classes/elementor-dynamic-tags.php

    r2779300 r2808866  
    44class ElementorDynamicTags {
    55    function __construct() {
    6         add_action( 'elementor/dynamic_tags/register_tags', [$this, 'elementor_dynamic_tags_register_tags'] );
     6        add_action( 'elementor/dynamic_tags/register', [$this, 'elementor_dynamic_tags_register_tags'] );
    77    }
    88
     
    1212        ] );
    1313
    14         include_once( __DIR__ . "/parent-meta.php" );
    15         include_once( __DIR__ . "/parent-meta-image.php" );
    16         include_once( __DIR__ . "/custom-callback.php" );
    17         include_once( __DIR__ . "/menu.php" );
     14        require_once( __DIR__ . "/parent-meta.php" );
     15        require_once( __DIR__ . "/parent-meta-image.php" );
     16        require_once( __DIR__ . "/custom-callback.php" );
     17        require_once( __DIR__ . "/menu.php" );
     18        require_once( __DIR__ . "/list-pluck.php" );
    1819
    19         $dynamic_tags->register_tag( '\Solid\ParentMeta' );
    20         $dynamic_tags->register_tag( '\Solid\ParentMetaImage' );
    21         $dynamic_tags->register_tag( '\Solid\CustomCallback' );
    22         $dynamic_tags->register_tag( '\Solid\Menu' );
     20        $dynamic_tags->register( new \Solid\ParentMeta() );
     21        $dynamic_tags->register( new \Solid\ParentMetaImage() );
     22        $dynamic_tags->register( new \Solid\CustomCallback() );
     23        $dynamic_tags->register( new \Solid\Menu() );
     24        $dynamic_tags->register( new \Solid\ListPluck() );
    2325    }
    2426}
  • solid-dynamics/tags/1.3.0/readme.txt

    r2779300 r2808866  
    1616- `Menu`: Returns the ids of the post of a specific menu id.
    1717- `Parent Meta`: Retrieves the meta value of the parent post based on the entered meta key.
     18- `List Pluck`: Pluck `field` off each item in `list` (`src` meta or option), and join with `sep`.
    1819
    1920This plugin also provides several settings at Settings > Solid Dynamics:
    2021
    21 - Elementor "Back to WordPress Editor" Button - Hide this button to prevent editors from reverting elementor page back to wp editor.
     22General:
     23
     24- Disable 404 permalink guessing.
     25
     26Elementor:
     27
     28- Hide the "Back to WordPress Editor" button from on the edit page.
     29- Hide the page title from the Hello Elementor theme.
     30- Wrap content with `main#content`.
     31- Make fade in entrance animations more subtle.
    2232
    2333== Contributing ==
     
    3848== Changelog ==
    3949
     50= 1.3.0 =
     51- Feature: add settings: Disable 404 permalink guessing; Hide the page title from the Hello Elementor theme; Wrap Elementor content with `main#content`; Make Elementor fade in entrance animations more subtle.
     52
    4053= 1.2.0 =
    4154- Feature: add settings page with option to remove elementor's "back to wp editor" button.
    4255
    4356= 1.1.3 =
    44 - Bug fix: Do not try to load JetEngine if plugin is nto preseent
     57- Bug fix: Do not try to load JetEngine if plugin is not preseent
    4558
    4659= 1.1.2 =
  • solid-dynamics/tags/1.3.0/solid-dynamics.php

    r2779300 r2808866  
    1919}
    2020
    21 include_once( __DIR__ . "/classes/elementor-dynamic-tags.php" );
     21require_once( __DIR__ . "/classes/elementor-dynamic-tags.php" );
    2222
    2323new ElementorDynamicTags();
    2424
    25 include_once( __DIR__ . "/classes/jet-engine-macros.php" );
     25require_once( __DIR__ . "/classes/jet-engine-macros.php" );
    2626
    2727new JetEngineMacros();
    2828
    29 include_once( __DIR__ . "/classes/settings-page.php" );
     29require_once( __DIR__ . "/settings/settings.php" );
    3030
    31 new SettingsPage();
    32 
    33 include_once( __DIR__ . "/classes/elementor-back-to-wp-editor-button.php" );
    34 
    35 new ElementorBackToWPEditorButton();
     31new Settings();
  • solid-dynamics/trunk/classes/elementor-dynamic-tags.php

    r2779300 r2808866  
    44class ElementorDynamicTags {
    55    function __construct() {
    6         add_action( 'elementor/dynamic_tags/register_tags', [$this, 'elementor_dynamic_tags_register_tags'] );
     6        add_action( 'elementor/dynamic_tags/register', [$this, 'elementor_dynamic_tags_register_tags'] );
    77    }
    88
     
    1212        ] );
    1313
    14         include_once( __DIR__ . "/parent-meta.php" );
    15         include_once( __DIR__ . "/parent-meta-image.php" );
    16         include_once( __DIR__ . "/custom-callback.php" );
    17         include_once( __DIR__ . "/menu.php" );
     14        require_once( __DIR__ . "/parent-meta.php" );
     15        require_once( __DIR__ . "/parent-meta-image.php" );
     16        require_once( __DIR__ . "/custom-callback.php" );
     17        require_once( __DIR__ . "/menu.php" );
     18        require_once( __DIR__ . "/list-pluck.php" );
    1819
    19         $dynamic_tags->register_tag( '\Solid\ParentMeta' );
    20         $dynamic_tags->register_tag( '\Solid\ParentMetaImage' );
    21         $dynamic_tags->register_tag( '\Solid\CustomCallback' );
    22         $dynamic_tags->register_tag( '\Solid\Menu' );
     20        $dynamic_tags->register( new \Solid\ParentMeta() );
     21        $dynamic_tags->register( new \Solid\ParentMetaImage() );
     22        $dynamic_tags->register( new \Solid\CustomCallback() );
     23        $dynamic_tags->register( new \Solid\Menu() );
     24        $dynamic_tags->register( new \Solid\ListPluck() );
    2325    }
    2426}
  • solid-dynamics/trunk/readme.txt

    r2779300 r2808866  
    1616- `Menu`: Returns the ids of the post of a specific menu id.
    1717- `Parent Meta`: Retrieves the meta value of the parent post based on the entered meta key.
     18- `List Pluck`: Pluck `field` off each item in `list` (`src` meta or option), and join with `sep`.
    1819
    1920This plugin also provides several settings at Settings > Solid Dynamics:
    2021
    21 - Elementor "Back to WordPress Editor" Button - Hide this button to prevent editors from reverting elementor page back to wp editor.
     22General:
     23
     24- Disable 404 permalink guessing.
     25
     26Elementor:
     27
     28- Hide the "Back to WordPress Editor" button from on the edit page.
     29- Hide the page title from the Hello Elementor theme.
     30- Wrap content with `main#content`.
     31- Make fade in entrance animations more subtle.
    2232
    2333== Contributing ==
     
    3848== Changelog ==
    3949
     50= 1.3.0 =
     51- Feature: add settings: Disable 404 permalink guessing; Hide the page title from the Hello Elementor theme; Wrap Elementor content with `main#content`; Make Elementor fade in entrance animations more subtle.
     52
    4053= 1.2.0 =
    4154- Feature: add settings page with option to remove elementor's "back to wp editor" button.
    4255
    4356= 1.1.3 =
    44 - Bug fix: Do not try to load JetEngine if plugin is nto preseent
     57- Bug fix: Do not try to load JetEngine if plugin is not preseent
    4558
    4659= 1.1.2 =
  • solid-dynamics/trunk/solid-dynamics.php

    r2779300 r2808866  
    1919}
    2020
    21 include_once( __DIR__ . "/classes/elementor-dynamic-tags.php" );
     21require_once( __DIR__ . "/classes/elementor-dynamic-tags.php" );
    2222
    2323new ElementorDynamicTags();
    2424
    25 include_once( __DIR__ . "/classes/jet-engine-macros.php" );
     25require_once( __DIR__ . "/classes/jet-engine-macros.php" );
    2626
    2727new JetEngineMacros();
    2828
    29 include_once( __DIR__ . "/classes/settings-page.php" );
     29require_once( __DIR__ . "/settings/settings.php" );
    3030
    31 new SettingsPage();
    32 
    33 include_once( __DIR__ . "/classes/elementor-back-to-wp-editor-button.php" );
    34 
    35 new ElementorBackToWPEditorButton();
     31new Settings();
Note: See TracChangeset for help on using the changeset viewer.