Plugin Directory

Changeset 2605444


Ignore:
Timestamp:
09/27/2021 09:45:04 AM (4 years ago)
Author:
mithublue
Message:

version:1.0.1.2

Location:
multislot-business-hours-for-dokan-vendor/trunk
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • multislot-business-hours-for-dokan-vendor/trunk/multislot-business-hours-for-dokan-vendor.php

    r2601270 r2605444  
    44    Plugin URI:
    55    Description: Maintain Business hours for your WooCommerce Shop. Let your customers know about business schedules.
    6     Version: 1.0.1.1
     6    Version: 1.0.1.2
    77    Text Domain: doc
    88    Author: CyberCraft
    99    Author URI: http://cybercraftit.com/
    1010    License: GPLv2 or later
     11    Domain Path: /languages/
    1112    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1213*/
     
    7374
    7475    public function __construct() {
     76        // Localize our plugin
     77        add_action( 'init', [ $this, 'localization_setup' ] );
     78
    7579        register_activation_hook( __FILE__, [ $this, 'on_active' ] );
    7680        add_filter( 'plugin_action_links_multislot-business-hours-for-dokan-vendor/multislot-business-hours-for-dokan-vendor.php', [ $this, 'plugin_links' ] );
     
    8084        Store_Settings::instance();
    8185    }
     86
     87    /**
     88     * Initialize plugin for localization
     89     *
     90     * @uses load_plugin_textdomain()
     91     */
     92    public function localization_setup() {
     93        load_plugin_textdomain( 'doc', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
     94    }
    8295
    8396    function plugin_links( $links ) {
  • multislot-business-hours-for-dokan-vendor/trunk/readme.txt

    r2601272 r2605444  
    77WC tested up to: 5.6.0
    88Requires PHP: 5.6
    9 Stable tag: 1.0.1.1
     9Stable tag: 1.0.1.2
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.