Plugin Directory

Changeset 2868239


Ignore:
Timestamp:
02/20/2023 02:57:54 PM (3 years ago)
Author:
infosoftplugin
Message:

version updated

Location:
wooinventory-lite/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wooinventory-lite/trunk/ic-woocommerce-inventory-lite.php

    r2723247 r2868239  
    22/**
    33Plugin Name: WooInventory Lite
    4 Plugin URI: https://wordpress.org/plugins/wooinventory-lite/
    5 Author: Infosoft Consultants
    64Description: With WooInventory a WooCommerce Stock Manager you can easily handle various stock related settings from single page.
    7 Version: 1.9
     5Version: 2.0
    86Author: Infosoft Consultants
    97Author URI: http://plugins.infosofttech.com
    10 License: A  "Slug" license name e.g. GPL2
     8Plugin URI: https://wordpress.org/plugins/wooinventory-lite/
    119
    12 Tested up to: 6.0.0
    13 Tested Wordpress Version: 6.0.x
    14 WC requires at least: 3.5
    15 WC tested up to: 6.5.x
     10Tested Wordpress Version: 6.1.x
     11WC requires at least: 3.5.x
     12WC tested up to: 7.4.x
    1613Requires at least: 5.7
    1714Requires PHP: 5.6
     
    2522    class IC_WooCommerce_Inventory_Lite{
    2623        function __construct() {
     24            add_filter( 'plugin_action_links_wp-job-pro/ic-job-manager.php', array( $this, 'plugin_action_links' ), 9, 2 );
     25            add_action( 'init', array( $this, 'load_plugin_textdomain' ));
     26            add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ));
     27        }
     28       
     29        function plugins_loaded(){
    2730            include_once("include/ic-woocommerce-inventory-lite-init.php");
    2831            $obj_init = new IC_WooCommerce_Inventory_Lite_Init();
    2932        }
     33       
     34        function plugin_action_links($plugin_links, $file = ''){
     35            $plugin_links[] = '<a target="_blank" href="'.admin_url('admin.php?page=inventory-menu').'">' . esc_html__( 'Dashboard', 'icmanageinv' ) . '</a>';
     36            return $plugin_links;
     37        }
     38       
     39        function load_plugin_textdomain(){
     40            load_plugin_textdomain( 'icmanageinv', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
     41        }       
    3042    }
    3143    $obj = new  IC_WooCommerce_Inventory_Lite();
  • wooinventory-lite/trunk/readme.txt

    r2723247 r2868239  
    88Requires at least: 4.5
    99Requires PHP: 5.6
    10 Stable tag: 1.9
    11 Tested up to: 6.0.0
    12 Tested Wordpress Version: 6.0.x
     10Stable tag: 2.0
     11Tested up to: 6.1.1
     12Tested Wordpress Version: 6.1.x
    1313WC requires at least: 3.5
    14 WC tested up to: 6.5.x
     14WC tested up to: 7.4.x
    1515Requires at least: 5.7
    1616
     
    6363== Changelog ==
    6464
     65= 2.0 - 20-February-2023 =
     66* Tested: Compatible with latest WooCommerce 7.4.0 and Wordpress 6.1.0 versions.
     67* Fix: Bug fix.
     68
    6569= 1.9 - 13-May-2022 =
    6670* Tested: Compatible with latest WooCommerce 6.5.1 and Wordpress 6.0.0 versions.
Note: See TracChangeset for help on using the changeset viewer.