Version Description
- Fix: Bug fixes
Download this release
Release Info
Developer | infinitewp |
Plugin | InfiniteWP Client |
Version | 1.2.11 |
Comparing to | |
See all releases |
Code changes from version 1.2.10 to 1.2.11
- core.class.php +1 -1
- init.php +2 -2
- readme.txt +4 -1
- stats.class.php +8 -0
core.class.php
CHANGED
@@ -101,7 +101,7 @@ class IWP_MMB_Core extends IWP_MMB_Helper
|
|
101 |
$this->iwp_mmb_pre_init_filters['get_stats']['iwp_mmb_stats_filter'][] = 'iwp_mmb_pre_init_stats';
|
102 |
|
103 |
$_iwp_mmb_item_filter['pre_init_stats'] = array( 'core_update', 'hit_counter', 'comments', 'backups', 'posts', 'drafts', 'scheduled' );
|
104 |
-
$_iwp_mmb_item_filter['get'] = array( 'updates', 'errors','plugins_status' );
|
105 |
|
106 |
$this->iwp_mmb_pre_init_actions = array(
|
107 |
'backup_req' => 'iwp_mmb_get_backup_req',
|
101 |
$this->iwp_mmb_pre_init_filters['get_stats']['iwp_mmb_stats_filter'][] = 'iwp_mmb_pre_init_stats';
|
102 |
|
103 |
$_iwp_mmb_item_filter['pre_init_stats'] = array( 'core_update', 'hit_counter', 'comments', 'backups', 'posts', 'drafts', 'scheduled' );
|
104 |
+
$_iwp_mmb_item_filter['get'] = array( 'updates', 'errors','plugins_status','themes_status' );
|
105 |
|
106 |
$this->iwp_mmb_pre_init_actions = array(
|
107 |
'backup_req' => 'iwp_mmb_get_backup_req',
|
init.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: InfiniteWP - Client
|
|
4 |
Plugin URI: http://infinitewp.com/
|
5 |
Description: This is the client plugin of InfiniteWP that communicates with the InfiniteWP Admin panel.
|
6 |
Author: Revmakx
|
7 |
-
Version: 1.2.
|
8 |
Author URI: http://www.revmakx.com
|
9 |
*/
|
10 |
/************************************************************
|
@@ -26,7 +26,7 @@ Author URI: http://www.revmakx.com
|
|
26 |
**************************************************************/
|
27 |
|
28 |
if(!defined('IWP_MMB_CLIENT_VERSION'))
|
29 |
-
define('IWP_MMB_CLIENT_VERSION', '1.2.
|
30 |
|
31 |
|
32 |
if ( !defined('IWP_MMB_XFRAME_COOKIE')){
|
4 |
Plugin URI: http://infinitewp.com/
|
5 |
Description: This is the client plugin of InfiniteWP that communicates with the InfiniteWP Admin panel.
|
6 |
Author: Revmakx
|
7 |
+
Version: 1.2.11
|
8 |
Author URI: http://www.revmakx.com
|
9 |
*/
|
10 |
/************************************************************
|
26 |
**************************************************************/
|
27 |
|
28 |
if(!defined('IWP_MMB_CLIENT_VERSION'))
|
29 |
+
define('IWP_MMB_CLIENT_VERSION', '1.2.11');
|
30 |
|
31 |
|
32 |
if ( !defined('IWP_MMB_XFRAME_COOKIE')){
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: infinitewp
|
3 |
Tags: admin, administration, amazon, api, authentication, automatic, dashboard, dropbox, events, integration, manage, multisite, multiple, notification, performance, s3, security, seo, stats, tracking, infinitewp, updates, backup, restore, iwp, infinite
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 3.8.
|
6 |
Stable tag: trunk
|
7 |
|
8 |
Install this plugin on unlimited sites and manage them all from a central dashboard.
|
@@ -48,6 +48,9 @@ Credits: [Vladimir Prelovac](http://prelovac.com/vladimir) for his worker plugin
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
51 |
= 1.2.10 =
|
52 |
* Fix: wp_iwp_redirect sql error is fixed
|
53 |
|
2 |
Contributors: infinitewp
|
3 |
Tags: admin, administration, amazon, api, authentication, automatic, dashboard, dropbox, events, integration, manage, multisite, multiple, notification, performance, s3, security, seo, stats, tracking, infinitewp, updates, backup, restore, iwp, infinite
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 3.8.3
|
6 |
Stable tag: trunk
|
7 |
|
8 |
Install this plugin on unlimited sites and manage them all from a central dashboard.
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.2.11 =
|
52 |
+
* Fix: Bug fixes
|
53 |
+
|
54 |
= 1.2.10 =
|
55 |
* Fix: wp_iwp_redirect sql error is fixed
|
56 |
|
stats.class.php
CHANGED
@@ -374,6 +374,14 @@ class IWP_MMB_Stats extends IWP_MMB_Core
|
|
374 |
|
375 |
return $stats;
|
376 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
|
378 |
function pre_init_stats($params)
|
379 |
{
|
374 |
|
375 |
return $stats;
|
376 |
}
|
377 |
+
function get_themes_status($stats=array(), $options = array()){
|
378 |
+
$params = array('items'=>array('themes'));
|
379 |
+
global $iwp_mmb_core;
|
380 |
+
$iwp_mmb_core->get_installer_instance();
|
381 |
+
$installedThemes = $iwp_mmb_core->installer_instance->get_themes($params);
|
382 |
+
$stats['themes_status'] = $installedThemes;
|
383 |
+
return $stats;
|
384 |
+
}
|
385 |
|
386 |
function pre_init_stats($params)
|
387 |
{
|