Changeset 2674274
- Timestamp:
- 02/07/2022 01:10:44 PM (4 years ago)
- Location:
- liffery/trunk
- Files:
-
- 10 edited
-
README.txt (modified) (2 diffs)
-
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
r2667144 r2674274 5 5 Requires at least: 5.0.0 6 6 Tested up to: 5.9 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 39 39 = How can I know if I have set things up correctly? = 40 40 41 If you installed and activated the WordPress plugin, and also entered the Liffery verification code to verify your domain, you should no tsee the Liffery Sidebar on your website.41 If you installed and activated the WordPress plugin, and also entered the Liffery verification code to verify your domain, you should now see the Liffery Sidebar on your website. 42 42 43 43 But, if you hit any issues, don't be shy, our team at Liffery will be happy to help. -
liffery/trunk/admin/class-liffery-sidebar-admin.php
r2667144 r2674274 6 6 * 7 7 * @link https://www.liffery.com 8 * @since 1.0. 38 * @since 1.0.4 9 9 * 10 10 * @package Liffery_sidebar … … 28 28 * The ID of this plugin. 29 29 * 30 * @since 1.0. 330 * @since 1.0.4 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. 339 * @since 1.0.4 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. 350 * @since 1.0.4 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. 373 * @since 1.0.4 74 74 */ 75 75 public function enqueue_styles() … … 95 95 * Register the JavaScript for the admin area. 96 96 * 97 * @since 1.0. 397 * @since 1.0.4 98 98 */ 99 99 public function enqueue_scripts() -
liffery/trunk/includes/class-liffery-sidebar-activator.php
r2667144 r2674274 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 37 * @since 1.0.4 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. 318 * @since 1.0.4 19 19 * @package Liffery_sidebar 20 20 * @subpackage Liffery_sidebar/includes … … 29 29 * Long Description. 30 30 * 31 * @since 1.0. 331 * @since 1.0.4 32 32 */ 33 33 public static function activate() -
liffery/trunk/includes/class-liffery-sidebar-deactivator.php
r2667144 r2674274 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 37 * @since 1.0.4 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. 318 * @since 1.0.4 19 19 * @package Liffery_sidebar 20 20 * @subpackage Liffery_sidebar/includes … … 29 29 * Long Description. 30 30 * 31 * @since 1.0. 331 * @since 1.0.4 32 32 */ 33 33 public static function deactivate() -
liffery/trunk/includes/class-liffery-sidebar-i18n.php
r2667144 r2674274 8 8 * 9 9 * @link https://www.liffery.com 10 * @since 1.0. 310 * @since 1.0.4 11 11 * 12 12 * @package Liffery_sidebar … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1.0. 322 * @since 1.0.4 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. 332 * @since 1.0.4 33 33 */ 34 34 public function load_plugin_textdomain() -
liffery/trunk/includes/class-liffery-sidebar-loader.php
r2667144 r2674274 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 37 * @since 1.0.4 8 8 * 9 9 * @package Liffery_sidebar … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1.0. 329 * @since 1.0.4 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. 338 * @since 1.0.4 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. 347 * @since 1.0.4 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. 359 * @since 1.0.4 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. 373 * @since 1.0.4 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. 388 * @since 1.0.4 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. 3115 * @since 1.0.4 116 116 */ 117 117 public function run() { -
liffery/trunk/includes/class-liffery-sidebar.php
r2667144 r2674274 8 8 * 9 9 * @link https://www.liffery.com 10 * @since 1.0. 310 * @since 1.0.4 11 11 * 12 12 * @package Liffery_sidebar … … 23 23 * version of the plugin. 24 24 * 25 * @since 1.0. 325 * @since 1.0.4 26 26 * @package Liffery_sidebar 27 27 * @subpackage Liffery_sidebar/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1.0. 336 * @since 1.0.4 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. 345 * @since 1.0.4 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. 354 * @since 1.0.4 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. 367 * @since 1.0.4 68 68 */ 69 69 public function __construct() { … … 71 71 $this->version = LIFFERY_sidebar_VERSION; 72 72 } else { 73 $this->version = '1.0. 3';73 $this->version = '1.0.4'; 74 74 } 75 75 $this->plugin_name = 'liffery-sidebar'; … … 94 94 * with WordPress. 95 95 * 96 * @since 1.0. 396 * @since 1.0.4 97 97 * @access private 98 98 */ … … 132 132 * with WordPress. 133 133 * 134 * @since 1.0. 3134 * @since 1.0.4 135 135 * @access private 136 136 */ … … 147 147 * of the plugin. 148 148 * 149 * @since 1.0. 3149 * @since 1.0.4 150 150 * @access private 151 151 */ … … 163 163 * of the plugin. 164 164 * 165 * @since 1.0. 3165 * @since 1.0.4 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. 3179 * @since 1.0.4 180 180 */ 181 181 public function run() { … … 187 187 * WordPress and to define internationalization functionality. 188 188 * 189 * @since 1.0. 3189 * @since 1.0.4 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. 3199 * @since 1.0.4 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. 3209 * @since 1.0.4 210 210 * @return string The version number of the plugin. 211 211 */ -
liffery/trunk/liffery.php
r2667144 r2674274 10 10 * 11 11 * @link https://www.liffery.com 12 * @since 1.0. 312 * @since 1.0.4 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. 319 * Version: 1.0.4 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. 3and use SemVer - https://semver.org34 * Start at version 1.0.4 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. 3');37 define('LIFFERY_sidebar_VERSION', '1.0.4'); 38 38 39 39 /** … … 73 73 * not affect the page life cycle. 74 74 * 75 * @since 1.0. 375 * @since 1.0.4 76 76 */ 77 77 function run_liffery_sidebar() -
liffery/trunk/public/class-liffery-sidebar-public.php
r2667144 r2674274 5 5 * 6 6 * @link https://www.liffery.com 7 * @since 1.0. 37 * @since 1.0.4 8 8 * 9 9 * @package Liffery_sidebar … … 27 27 * The ID of this plugin. 28 28 * 29 * @since 1.0. 329 * @since 1.0.4 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. 338 * @since 1.0.4 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. 349 * @since 1.0.4 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. 362 * @since 1.0.4 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. 372 * @since 1.0.4 73 73 */ 74 74 public function enqueue_scripts() -
liffery/trunk/uninstall.php
r2667144 r2674274 15 15 * 16 16 * @link https://www.liffery.com 17 * @since 1.0. 317 * @since 1.0.4 18 18 * 19 19 * @package Plugin_Name
Note: See TracChangeset
for help on using the changeset viewer.