Changeset 2714716
- Timestamp:
- 04/26/2022 08:31:46 AM (4 years ago)
- Location:
- liffery/trunk
- Files:
-
- 10 edited
-
README.txt (modified) (1 diff)
-
admin/class-liffery-sidebar-admin.php (modified) (6 diffs)
-
includes/class-liffery-sidebar-activator.php (modified) (3 diffs)
-
includes/class-liffery-sidebar-deactivator.php (modified) (3 diffs)
-
includes/class-liffery-sidebar-i18n.php (modified) (3 diffs)
-
includes/class-liffery-sidebar-loader.php (modified) (8 diffs)
-
includes/class-liffery-sidebar.php (modified) (15 diffs)
-
liffery.php (modified) (4 diffs)
-
public/class-liffery-sidebar-public.php (modified) (6 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
liffery/trunk/README.txt
r2674274 r2714716 5 5 Requires at least: 5.0.0 6 6 Tested up to: 5.9 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
liffery/trunk/admin/class-liffery-sidebar-admin.php
r2674274 r2714716 6 6 * 7 7 * @link https://www.liffery.com 8 * @since 1.0. 48 * @since 1.0.5 9 9 * 10 10 * @package Liffery_sidebar … … 28 28 * The ID of this plugin. 29 29 * 30 * @since 1.0. 430 * @since 1.0.5 31 31 * @access private 32 32 * @var string $plugin_name The ID of this plugin. … … 37 37 * The version of this plugin. 38 38 * 39 * @since 1.0. 439 * @since 1.0.5 40 40 * @access private 41 41 * @var string $version The current version of this plugin. … … 48 48 * @param string $plugin_name The name of this plugin. 49 49 * @param string $version The version of this plugin. 50 * @since 1.0. 450 * @since 1.0.5 51 51 */ 52 52 public function __construct($plugin_name, $version) … … 71 71 * Register the stylesheets for the admin area. 72 72 * 73 * @since 1.0. 473 * @since 1.0.5 74 74 */ 75 75 public function enqueue_styles() … … 95 95 * Register the JavaScript for the admin area. 96 96 * 97 * @since 1.0. 497 * @since 1.0.5 98 98 */ 99 99 public function enqueue_scripts() -
liffery/trunk/includes/class-liffery-sidebar-activator.php
r2674274 r2714716 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 47 * @since 1.0.5 8 8 * 9 9 * @package Liffery_sidebar … … 16 16 * This class defines all code necessary to run during the plugin's activation. 17 17 * 18 * @since 1.0. 418 * @since 1.0.5 19 19 * @package Liffery_sidebar 20 20 * @subpackage Liffery_sidebar/includes … … 29 29 * Long Description. 30 30 * 31 * @since 1.0. 431 * @since 1.0.5 32 32 */ 33 33 public static function activate() -
liffery/trunk/includes/class-liffery-sidebar-deactivator.php
r2674274 r2714716 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 47 * @since 1.0.5 8 8 * 9 9 * @package Liffery_sidebar … … 16 16 * This class defines all code necessary to run during the plugin's deactivation. 17 17 * 18 * @since 1.0. 418 * @since 1.0.5 19 19 * @package Liffery_sidebar 20 20 * @subpackage Liffery_sidebar/includes … … 29 29 * Long Description. 30 30 * 31 * @since 1.0. 431 * @since 1.0.5 32 32 */ 33 33 public static function deactivate() -
liffery/trunk/includes/class-liffery-sidebar-i18n.php
r2674274 r2714716 8 8 * 9 9 * @link https://www.liffery.com 10 * @since 1.0. 410 * @since 1.0.5 11 11 * 12 12 * @package Liffery_sidebar … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1.0. 422 * @since 1.0.5 23 23 * @package Liffery_sidebar 24 24 * @subpackage Liffery_sidebar/includes … … 30 30 * Load the plugin text domain for translation. 31 31 * 32 * @since 1.0. 432 * @since 1.0.5 33 33 */ 34 34 public function load_plugin_textdomain() -
liffery/trunk/includes/class-liffery-sidebar-loader.php
r2674274 r2714716 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 47 * @since 1.0.5 8 8 * 9 9 * @package Liffery_sidebar … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1.0. 429 * @since 1.0.5 30 30 * @access protected 31 31 * @var array $actions The actions registered with WordPress to fire when the plugin loads. … … 36 36 * The array of filters registered with WordPress. 37 37 * 38 * @since 1.0. 438 * @since 1.0.5 39 39 * @access protected 40 40 * @var array $filters The filters registered with WordPress to fire when the plugin loads. … … 45 45 * Initialize the collections used to maintain the actions and filters. 46 46 * 47 * @since 1.0. 447 * @since 1.0.5 48 48 */ 49 49 public function __construct() { … … 57 57 * Add a new action to the collection to be registered with WordPress. 58 58 * 59 * @since 1.0. 459 * @since 1.0.5 60 60 * @param string $hook The name of the WordPress action that is being registered. 61 61 * @param object $component A reference to the instance of the object on which the action is defined. … … 71 71 * Add a new filter to the collection to be registered with WordPress. 72 72 * 73 * @since 1.0. 473 * @since 1.0.5 74 74 * @param string $hook The name of the WordPress filter that is being registered. 75 75 * @param object $component A reference to the instance of the object on which the filter is defined. … … 86 86 * collection. 87 87 * 88 * @since 1.0. 488 * @since 1.0.5 89 89 * @access private 90 90 * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). … … 113 113 * Register the filters and actions with WordPress. 114 114 * 115 * @since 1.0. 4115 * @since 1.0.5 116 116 */ 117 117 public function run() { -
liffery/trunk/includes/class-liffery-sidebar.php
r2674274 r2714716 8 8 * 9 9 * @link https://www.liffery.com 10 * @since 1.0. 410 * @since 1.0.5 11 11 * 12 12 * @package Liffery_sidebar … … 23 23 * version of the plugin. 24 24 * 25 * @since 1.0. 425 * @since 1.0.5 26 26 * @package Liffery_sidebar 27 27 * @subpackage Liffery_sidebar/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1.0. 436 * @since 1.0.5 37 37 * @access protected 38 38 * @var Liffery_sidebar_Loader $loader Maintains and registers all hooks for the plugin. … … 43 43 * The unique identifier of this plugin. 44 44 * 45 * @since 1.0. 445 * @since 1.0.5 46 46 * @access protected 47 47 * @var string $plugin_name The string used to uniquely identify this plugin. … … 52 52 * The current version of the plugin. 53 53 * 54 * @since 1.0. 454 * @since 1.0.5 55 55 * @access protected 56 56 * @var string $version The current version of the plugin. … … 65 65 * the public-facing side of the site. 66 66 * 67 * @since 1.0. 467 * @since 1.0.5 68 68 */ 69 69 public function __construct() { … … 71 71 $this->version = LIFFERY_sidebar_VERSION; 72 72 } else { 73 $this->version = '1.0. 4';73 $this->version = '1.0.5'; 74 74 } 75 75 $this->plugin_name = 'liffery-sidebar'; … … 94 94 * with WordPress. 95 95 * 96 * @since 1.0. 496 * @since 1.0.5 97 97 * @access private 98 98 */ … … 132 132 * with WordPress. 133 133 * 134 * @since 1.0. 4134 * @since 1.0.5 135 135 * @access private 136 136 */ … … 147 147 * of the plugin. 148 148 * 149 * @since 1.0. 4149 * @since 1.0.5 150 150 * @access private 151 151 */ … … 163 163 * of the plugin. 164 164 * 165 * @since 1.0. 4165 * @since 1.0.5 166 166 * @access private 167 167 */ … … 177 177 * Run the loader to execute all of the hooks with WordPress. 178 178 * 179 * @since 1.0. 4179 * @since 1.0.5 180 180 */ 181 181 public function run() { … … 187 187 * WordPress and to define internationalization functionality. 188 188 * 189 * @since 1.0. 4189 * @since 1.0.5 190 190 * @return string The name of the plugin. 191 191 */ … … 197 197 * The reference to the class that orchestrates the hooks with the plugin. 198 198 * 199 * @since 1.0. 4199 * @since 1.0.5 200 200 * @return Liffery_sidebar_Loader Orchestrates the hooks of the plugin. 201 201 */ … … 207 207 * Retrieve the version number of the plugin. 208 208 * 209 * @since 1.0. 4209 * @since 1.0.5 210 210 * @return string The version number of the plugin. 211 211 */ -
liffery/trunk/liffery.php
r2674274 r2714716 10 10 * 11 11 * @link https://www.liffery.com 12 * @since 1.0. 412 * @since 1.0.5 13 13 * @package Liffery 14 14 * … … 17 17 * Plugin URI: https://github.com/liffery-com/plugin-liffery-wordpress 18 18 * Description: The official Liffery Wordpress/ Woocommerce Plugin - Make sure you verify the installation on the settings page 19 * Version: 1.0. 419 * Version: 1.0.5 20 20 * Author: Liffery Ltd 21 21 * Author URI: https://www.liffery.com/ … … 32 32 /** 33 33 * Currently plugin version. 34 * Start at version 1.0. 4and use SemVer - https://semver.org34 * Start at version 1.0.5 and use SemVer - https://semver.org 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define('LIFFERY_sidebar_VERSION', '1.0. 4');37 define('LIFFERY_sidebar_VERSION', '1.0.5'); 38 38 39 39 /** … … 73 73 * not affect the page life cycle. 74 74 * 75 * @since 1.0. 475 * @since 1.0.5 76 76 */ 77 77 function run_liffery_sidebar() -
liffery/trunk/public/class-liffery-sidebar-public.php
r2674274 r2714716 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 47 * @since 1.0.5 8 8 * 9 9 * @package Liffery_sidebar … … 27 27 * The ID of this plugin. 28 28 * 29 * @since 1.0. 429 * @since 1.0.5 30 30 * @access private 31 31 * @var string $plugin_name The ID of this plugin. … … 36 36 * The version of this plugin. 37 37 * 38 * @since 1.0. 438 * @since 1.0.5 39 39 * @access private 40 40 * @var string $version The current version of this plugin. … … 47 47 * @param string $plugin_name The name of the plugin. 48 48 * @param string $version The version of this plugin. 49 * @since 1.0. 449 * @since 1.0.5 50 50 */ 51 51 public function __construct($plugin_name, $version) … … 60 60 * Register the stylesheets for the public-facing side of the site. 61 61 * 62 * @since 1.0. 462 * @since 1.0.5 63 63 */ 64 64 public function enqueue_styles() … … 70 70 * Register the JavaScript for the public-facing side of the site. 71 71 * 72 * @since 1.0. 472 * @since 1.0.5 73 73 */ 74 74 public function enqueue_scripts() -
liffery/trunk/uninstall.php
r2674274 r2714716 15 15 * 16 16 * @link https://www.liffery.com 17 * @since 1.0. 417 * @since 1.0.5 18 18 * 19 19 * @package Plugin_Name
Note: See TracChangeset
for help on using the changeset viewer.