Changeset 1942881
- Timestamp:
- 09/18/2018 05:43:50 AM (8 years ago)
- Location:
- fm-tools/trunk
- Files:
-
- 3 edited
-
fm-tools.php (modified) (2 diffs)
-
includes/class-fm-tools-admin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fm-tools/trunk/fm-tools.php
r1942734 r1942881 4 4 Plugin URI: https://colorinside.com 5 5 Description: This plugin is reserved to FattoreMamma Active's users. This tool monitors blogposts performances, only if included in authorized FattoreMamma's campaign identified by a campaign code. Please visit http://www.fattoremamma.com 6 Version: 1.1. 56 Version: 1.1.6 7 7 Author: colorinside studio 8 8 Author URI: https://colorinside.com … … 56 56 function load_fm_tools_admin() 57 57 { 58 load_plugin_textdomain('fm-tools', false, dirname( plugin_basename(__FILE__)) . '/languages');58 load_plugin_textdomain('fm-tools', false, dirname(PLUGIN_NAME) . '/languages'); 59 59 60 60 require_once INC . '/class-fm-tools-admin.php'; -
fm-tools/trunk/includes/class-fm-tools-admin.php
r1942734 r1942881 26 26 public function __construct() 27 27 { 28 add_filter('plugin_action_links_' . PLUGIN_NAME, array(&$this, 'plugin_action_links')); 28 29 $this->options = get_option('fm_tools_active', array()); 29 30 if ($this->options['active']) $this->init(); … … 41 42 add_action('save_post', array(&$this, 'save_meta')); 42 43 add_action('admin_notices', array(&$this, 'get_notices')); 43 add_filter('plugin_action_links_' . PLUGIN_NAME, array(&$this, 'plugin_action_links')); 44 add_filter('sanitize_post_meta__fm_tools_active_campaign', array(&$this, 'verify_campaign')); 44 add_filter('sanitize_post_meta__fm_tools_active_campaign', array(&$this, 'verify_campaign')); 45 45 } 46 46 -
fm-tools/trunk/readme.txt
r1942734 r1942881 3 3 Requires at least: 4.0.0 4 4 Tested up to: 4.9.8 5 Stable tag: 1.1. 55 Stable tag: 1.1.6 6 6 7 7 This plugin is reserved to FattoreMamma Active's users. This tool monitors blogposts performances, only if included in authorized FattoreMamma's campaign identified by a campaign code. … … 31 31 == Changelog == 32 32 33 Version 1.1.6 34 - Filter plugin_action_links_ Moved in Constructor 35 33 36 Version 1.1.5 34 37 - Minor bugs solved
Note: See TracChangeset
for help on using the changeset viewer.