Changeset 2666906
- Timestamp:
- 01/27/2022 10:43:23 AM (4 years ago)
- Location:
- liffery
- Files:
-
- 2 added
- 1 deleted
- 10 edited
-
assets/banner-772x250.png (added)
-
assets/icon-256x256.png (added)
-
assets/screenshot-1.png (deleted)
-
trunk/README.txt (modified) (1 diff)
-
trunk/admin/class-liffery-sidebar-admin.php (modified) (6 diffs)
-
trunk/includes/class-liffery-sidebar-activator.php (modified) (3 diffs)
-
trunk/includes/class-liffery-sidebar-deactivator.php (modified) (3 diffs)
-
trunk/includes/class-liffery-sidebar-i18n.php (modified) (3 diffs)
-
trunk/includes/class-liffery-sidebar-loader.php (modified) (8 diffs)
-
trunk/includes/class-liffery-sidebar.php (modified) (15 diffs)
-
trunk/liffery.php (modified) (4 diffs)
-
trunk/public/class-liffery-sidebar-public.php (modified) (6 diffs)
-
trunk/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
liffery/trunk/README.txt
r2666882 r2666906 5 5 Requires at least: 5.0.0 6 6 Tested up to: 5.8.3 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 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
r2666882 r2666906 6 6 * 7 7 * @link https://www.liffery.com 8 * @since 1.0. 08 * @since 1.0.1 9 9 * 10 10 * @package Liffery_sidebar … … 28 28 * The ID of this plugin. 29 29 * 30 * @since 1.0. 030 * @since 1.0.1 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. 039 * @since 1.0.1 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. 050 * @since 1.0.1 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. 073 * @since 1.0.1 74 74 */ 75 75 public function enqueue_styles() … … 95 95 * Register the JavaScript for the admin area. 96 96 * 97 * @since 1.0. 097 * @since 1.0.1 98 98 */ 99 99 public function enqueue_scripts() -
liffery/trunk/includes/class-liffery-sidebar-activator.php
r2666882 r2666906 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 07 * @since 1.0.1 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. 018 * @since 1.0.1 19 19 * @package Liffery_sidebar 20 20 * @subpackage Liffery_sidebar/includes … … 29 29 * Long Description. 30 30 * 31 * @since 1.0. 031 * @since 1.0.1 32 32 */ 33 33 public static function activate() -
liffery/trunk/includes/class-liffery-sidebar-deactivator.php
r2666882 r2666906 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 07 * @since 1.0.1 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. 018 * @since 1.0.1 19 19 * @package Liffery_sidebar 20 20 * @subpackage Liffery_sidebar/includes … … 29 29 * Long Description. 30 30 * 31 * @since 1.0. 031 * @since 1.0.1 32 32 */ 33 33 public static function deactivate() -
liffery/trunk/includes/class-liffery-sidebar-i18n.php
r2666882 r2666906 8 8 * 9 9 * @link https://www.liffery.com 10 * @since 1.0. 010 * @since 1.0.1 11 11 * 12 12 * @package Liffery_sidebar … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1.0. 022 * @since 1.0.1 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. 032 * @since 1.0.1 33 33 */ 34 34 public function load_plugin_textdomain() -
liffery/trunk/includes/class-liffery-sidebar-loader.php
r2666882 r2666906 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 07 * @since 1.0.1 8 8 * 9 9 * @package Liffery_sidebar … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1.0. 029 * @since 1.0.1 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. 038 * @since 1.0.1 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. 047 * @since 1.0.1 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. 059 * @since 1.0.1 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. 073 * @since 1.0.1 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. 088 * @since 1.0.1 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. 0115 * @since 1.0.1 116 116 */ 117 117 public function run() { -
liffery/trunk/includes/class-liffery-sidebar.php
r2666882 r2666906 8 8 * 9 9 * @link https://www.liffery.com 10 * @since 1.0. 010 * @since 1.0.1 11 11 * 12 12 * @package Liffery_sidebar … … 23 23 * version of the plugin. 24 24 * 25 * @since 1.0. 025 * @since 1.0.1 26 26 * @package Liffery_sidebar 27 27 * @subpackage Liffery_sidebar/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1.0. 036 * @since 1.0.1 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. 045 * @since 1.0.1 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. 054 * @since 1.0.1 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. 067 * @since 1.0.1 68 68 */ 69 69 public function __construct() { … … 71 71 $this->version = LIFFERY_sidebar_VERSION; 72 72 } else { 73 $this->version = '1.0. 0';73 $this->version = '1.0.1'; 74 74 } 75 75 $this->plugin_name = 'liffery-sidebar'; … … 94 94 * with WordPress. 95 95 * 96 * @since 1.0. 096 * @since 1.0.1 97 97 * @access private 98 98 */ … … 132 132 * with WordPress. 133 133 * 134 * @since 1.0. 0134 * @since 1.0.1 135 135 * @access private 136 136 */ … … 147 147 * of the plugin. 148 148 * 149 * @since 1.0. 0149 * @since 1.0.1 150 150 * @access private 151 151 */ … … 163 163 * of the plugin. 164 164 * 165 * @since 1.0. 0165 * @since 1.0.1 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. 0179 * @since 1.0.1 180 180 */ 181 181 public function run() { … … 187 187 * WordPress and to define internationalization functionality. 188 188 * 189 * @since 1.0. 0189 * @since 1.0.1 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. 0199 * @since 1.0.1 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. 0209 * @since 1.0.1 210 210 * @return string The version number of the plugin. 211 211 */ -
liffery/trunk/liffery.php
r2666882 r2666906 10 10 * 11 11 * @link https://www.liffery.com 12 * @since 1.0. 012 * @since 1.0.1 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. 019 * Version: 1.0.1 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. 0and use SemVer - https://semver.org34 * Start at version 1.0.1 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. 0');37 define('LIFFERY_sidebar_VERSION', '1.0.1'); 38 38 39 39 /** … … 73 73 * not affect the page life cycle. 74 74 * 75 * @since 1.0. 075 * @since 1.0.1 76 76 */ 77 77 function run_liffery_sidebar() -
liffery/trunk/public/class-liffery-sidebar-public.php
r2666882 r2666906 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 07 * @since 1.0.1 8 8 * 9 9 * @package Liffery_sidebar … … 27 27 * The ID of this plugin. 28 28 * 29 * @since 1.0. 029 * @since 1.0.1 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. 038 * @since 1.0.1 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. 049 * @since 1.0.1 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. 062 * @since 1.0.1 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. 072 * @since 1.0.1 73 73 */ 74 74 public function enqueue_scripts() -
liffery/trunk/uninstall.php
r2666882 r2666906 15 15 * 16 16 * @link https://www.liffery.com 17 * @since 1.0. 017 * @since 1.0.1 18 18 * 19 19 * @package Plugin_Name
Note: See TracChangeset
for help on using the changeset viewer.