Plugin Directory

Changeset 2674274


Ignore:
Timestamp:
02/07/2022 01:10:44 PM (4 years ago)
Author:
liffery
Message:

docs

Location:
liffery/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • liffery/trunk/README.txt

    r2667144 r2674274  
    55Requires at least: 5.0.0
    66Tested up to: 5.9
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3939= How can I know if I have set things up correctly? =
    4040
    41 If you installed and activated the WordPress plugin, and also entered the Liffery verification code to verify your domain, you should not see the Liffery Sidebar on your website.
     41If 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.
    4242
    4343But, 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  
    66 *
    77 * @link       https://www.liffery.com
    8  * @since      1.0.3
     8 * @since      1.0.4
    99 *
    1010 * @package    Liffery_sidebar
     
    2828     * The ID of this plugin.
    2929     *
    30      * @since    1.0.3
     30     * @since    1.0.4
    3131     * @access   private
    3232     * @var      string $plugin_name The ID of this plugin.
     
    3737     * The version of this plugin.
    3838     *
    39      * @since    1.0.3
     39     * @since    1.0.4
    4040     * @access   private
    4141     * @var      string $version The current version of this plugin.
     
    4848     * @param string $plugin_name The name of this plugin.
    4949     * @param string $version The version of this plugin.
    50      * @since    1.0.3
     50     * @since    1.0.4
    5151     */
    5252    public function __construct($plugin_name, $version)
     
    7171     * Register the stylesheets for the admin area.
    7272     *
    73      * @since    1.0.3
     73     * @since    1.0.4
    7474     */
    7575    public function enqueue_styles()
     
    9595     * Register the JavaScript for the admin area.
    9696     *
    97      * @since    1.0.3
     97     * @since    1.0.4
    9898     */
    9999    public function enqueue_scripts()
  • liffery/trunk/includes/class-liffery-sidebar-activator.php

    r2667144 r2674274  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.3
     7 * @since      1.0.4
    88 *
    99 * @package    Liffery_sidebar
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.0.3
     18 * @since      1.0.4
    1919 * @package    Liffery_sidebar
    2020 * @subpackage Liffery_sidebar/includes
     
    2929     * Long Description.
    3030     *
    31      * @since    1.0.3
     31     * @since    1.0.4
    3232     */
    3333    public static function activate()
  • liffery/trunk/includes/class-liffery-sidebar-deactivator.php

    r2667144 r2674274  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.3
     7 * @since      1.0.4
    88 *
    99 * @package    Liffery_sidebar
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      1.0.3
     18 * @since      1.0.4
    1919 * @package    Liffery_sidebar
    2020 * @subpackage Liffery_sidebar/includes
     
    2929     * Long Description.
    3030     *
    31      * @since    1.0.3
     31     * @since    1.0.4
    3232     */
    3333    public static function deactivate()
  • liffery/trunk/includes/class-liffery-sidebar-i18n.php

    r2667144 r2674274  
    88 *
    99 * @link       https://www.liffery.com
    10  * @since      1.0.3
     10 * @since      1.0.4
    1111 *
    1212 * @package    Liffery_sidebar
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      1.0.3
     22 * @since      1.0.4
    2323 * @package    Liffery_sidebar
    2424 * @subpackage Liffery_sidebar/includes
     
    3030     * Load the plugin text domain for translation.
    3131     *
    32      * @since    1.0.3
     32     * @since    1.0.4
    3333     */
    3434    public function load_plugin_textdomain()
  • liffery/trunk/includes/class-liffery-sidebar-loader.php

    r2667144 r2674274  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.3
     7 * @since      1.0.4
    88 *
    99 * @package    Liffery_sidebar
     
    2727     * The array of actions registered with WordPress.
    2828     *
    29      * @since    1.0.3
     29     * @since    1.0.4
    3030     * @access   protected
    3131     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3636     * The array of filters registered with WordPress.
    3737     *
    38      * @since    1.0.3
     38     * @since    1.0.4
    3939     * @access   protected
    4040     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4545     * Initialize the collections used to maintain the actions and filters.
    4646     *
    47      * @since    1.0.3
     47     * @since    1.0.4
    4848     */
    4949    public function __construct() {
     
    5757     * Add a new action to the collection to be registered with WordPress.
    5858     *
    59      * @since    1.0.3
     59     * @since    1.0.4
    6060     * @param    string               $hook             The name of the WordPress action that is being registered.
    6161     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7171     * Add a new filter to the collection to be registered with WordPress.
    7272     *
    73      * @since    1.0.3
     73     * @since    1.0.4
    7474     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7575     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8686     * collection.
    8787     *
    88      * @since    1.0.3
     88     * @since    1.0.4
    8989     * @access   private
    9090     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    113113     * Register the filters and actions with WordPress.
    114114     *
    115      * @since    1.0.3
     115     * @since    1.0.4
    116116     */
    117117    public function run() {
  • liffery/trunk/includes/class-liffery-sidebar.php

    r2667144 r2674274  
    88 *
    99 * @link       https://www.liffery.com
    10  * @since      1.0.3
     10 * @since      1.0.4
    1111 *
    1212 * @package    Liffery_sidebar
     
    2323 * version of the plugin.
    2424 *
    25  * @since      1.0.3
     25 * @since      1.0.4
    2626 * @package    Liffery_sidebar
    2727 * @subpackage Liffery_sidebar/includes
     
    3434     * the plugin.
    3535     *
    36      * @since    1.0.3
     36     * @since    1.0.4
    3737     * @access   protected
    3838     * @var      Liffery_sidebar_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4343     * The unique identifier of this plugin.
    4444     *
    45      * @since    1.0.3
     45     * @since    1.0.4
    4646     * @access   protected
    4747     * @var      string    $plugin_name    The string used to uniquely identify this plugin.
     
    5252     * The current version of the plugin.
    5353     *
    54      * @since    1.0.3
     54     * @since    1.0.4
    5555     * @access   protected
    5656     * @var      string    $version    The current version of the plugin.
     
    6565     * the public-facing side of the site.
    6666     *
    67      * @since    1.0.3
     67     * @since    1.0.4
    6868     */
    6969    public function __construct() {
     
    7171            $this->version = LIFFERY_sidebar_VERSION;
    7272        } else {
    73             $this->version = '1.0.3';
     73            $this->version = '1.0.4';
    7474        }
    7575        $this->plugin_name = 'liffery-sidebar';
     
    9494     * with WordPress.
    9595     *
    96      * @since    1.0.3
     96     * @since    1.0.4
    9797     * @access   private
    9898     */
     
    132132     * with WordPress.
    133133     *
    134      * @since    1.0.3
     134     * @since    1.0.4
    135135     * @access   private
    136136     */
     
    147147     * of the plugin.
    148148     *
    149      * @since    1.0.3
     149     * @since    1.0.4
    150150     * @access   private
    151151     */
     
    163163     * of the plugin.
    164164     *
    165      * @since    1.0.3
     165     * @since    1.0.4
    166166     * @access   private
    167167     */
     
    177177     * Run the loader to execute all of the hooks with WordPress.
    178178     *
    179      * @since    1.0.3
     179     * @since    1.0.4
    180180     */
    181181    public function run() {
     
    187187     * WordPress and to define internationalization functionality.
    188188     *
    189      * @since     1.0.3
     189     * @since     1.0.4
    190190     * @return    string    The name of the plugin.
    191191     */
     
    197197     * The reference to the class that orchestrates the hooks with the plugin.
    198198     *
    199      * @since     1.0.3
     199     * @since     1.0.4
    200200     * @return    Liffery_sidebar_Loader    Orchestrates the hooks of the plugin.
    201201     */
     
    207207     * Retrieve the version number of the plugin.
    208208     *
    209      * @since     1.0.3
     209     * @since     1.0.4
    210210     * @return    string    The version number of the plugin.
    211211     */
  • liffery/trunk/liffery.php

    r2667144 r2674274  
    1010 *
    1111 * @link              https://www.liffery.com
    12  * @since             1.0.3
     12 * @since             1.0.4
    1313 * @package           Liffery
    1414 *
     
    1717 * Plugin URI:        https://github.com/liffery-com/plugin-liffery-wordpress
    1818 * Description:       The official Liffery Wordpress/ Woocommerce Plugin - Make sure you verify the installation on the settings page
    19  * Version:           1.0.3
     19 * Version:           1.0.4
    2020 * Author:            Liffery Ltd
    2121 * Author URI:        https://www.liffery.com/
     
    3232/**
    3333 * Currently plugin version.
    34  * Start at version 1.0.3 and use SemVer - https://semver.org
     34 * Start at version 1.0.4 and use SemVer - https://semver.org
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define('LIFFERY_sidebar_VERSION', '1.0.3');
     37define('LIFFERY_sidebar_VERSION', '1.0.4');
    3838
    3939/**
     
    7373 * not affect the page life cycle.
    7474 *
    75  * @since    1.0.3
     75 * @since    1.0.4
    7676 */
    7777function run_liffery_sidebar()
  • liffery/trunk/public/class-liffery-sidebar-public.php

    r2667144 r2674274  
    55 *
    66 * @link       https://www.liffery.com
    7  * @since      1.0.3
     7 * @since      1.0.4
    88 *
    99 * @package    Liffery_sidebar
     
    2727     * The ID of this plugin.
    2828     *
    29      * @since    1.0.3
     29     * @since    1.0.4
    3030     * @access   private
    3131     * @var      string $plugin_name The ID of this plugin.
     
    3636     * The version of this plugin.
    3737     *
    38      * @since    1.0.3
     38     * @since    1.0.4
    3939     * @access   private
    4040     * @var      string $version The current version of this plugin.
     
    4747     * @param string $plugin_name The name of the plugin.
    4848     * @param string $version The version of this plugin.
    49      * @since    1.0.3
     49     * @since    1.0.4
    5050     */
    5151    public function __construct($plugin_name, $version)
     
    6060     * Register the stylesheets for the public-facing side of the site.
    6161     *
    62      * @since    1.0.3
     62     * @since    1.0.4
    6363     */
    6464    public function enqueue_styles()
     
    7070     * Register the JavaScript for the public-facing side of the site.
    7171     *
    72      * @since    1.0.3
     72     * @since    1.0.4
    7373     */
    7474    public function enqueue_scripts()
  • liffery/trunk/uninstall.php

    r2667144 r2674274  
    1515 *
    1616 * @link       https://www.liffery.com
    17  * @since      1.0.3
     17 * @since      1.0.4
    1818 *
    1919 * @package    Plugin_Name
Note: See TracChangeset for help on using the changeset viewer.