Version Description
- 3-15-2017 =
- Fixed: a few typos
Download this release
Release Info
Developer | mainwp |
Plugin | MainWP Child Reports |
Version | 1.5 |
Comparing to | |
See all releases |
Code changes from version 1.4 to 1.5
- includes/settings.php +3 -4
- mainwp-child-reports.php +1 -1
- readme.txt +6 -3
includes/settings.php
CHANGED
@@ -173,15 +173,14 @@ class MainWP_WP_Stream_Settings {
|
|
173 |
if (!class_exists('MainWP_WP_Stream_Admin'))
|
174 |
require_once MAINWP_WP_STREAM_INC_DIR . 'admin.php';
|
175 |
$branding_text = MainWP_WP_Stream_Admin::get_branding_title();
|
176 |
-
$branding_text = !empty($branding_text) ? 'Reset ' . $branding_text . ' Reports Database' : esc_html__( 'Reset MainWP Child Reports Database', 'mainwp-child-reports' );
|
177 |
$branding_name = !empty($branding_text) ? $branding_text : 'MainWP Child';
|
178 |
-
$chk_label = 'Hide ' . $branding_name . '
|
179 |
-
$chk_desc = 'If selected, the ' . $branding_name . '
|
180 |
$hide_child_plugins = get_option('mainwp_creport_hide_child_plugins', 'yes');
|
181 |
// to fix can not set default checked checkbox
|
182 |
$checkbox_hide_childs = '<tr><th scope="row"><label for="mainwp_creport_hide_child_plugins">' . $chk_label;
|
183 |
$checkbox_hide_childs .= '</label></th><td><label><input name="mainwp_creport_hide_child_plugins" id="mainwp_creport_hide_child_plugins" value="1" type="checkbox" ' . ($hide_child_plugins == 'yes' ? 'checked' : '') . '> ';
|
184 |
-
$checkbox_hide_childs .= '</label><p class="description">' . $chk_desc . '
|
185 |
|
186 |
self::$fields = array(
|
187 |
'general' => array(
|
173 |
if (!class_exists('MainWP_WP_Stream_Admin'))
|
174 |
require_once MAINWP_WP_STREAM_INC_DIR . 'admin.php';
|
175 |
$branding_text = MainWP_WP_Stream_Admin::get_branding_title();
|
|
|
176 |
$branding_name = !empty($branding_text) ? $branding_text : 'MainWP Child';
|
177 |
+
$chk_label = 'Hide ' . $branding_name . ' Reports from reports';
|
178 |
+
$chk_desc = 'If selected, the ' . $branding_name . ' Reports plugin will be left out from reports for this site.';
|
179 |
$hide_child_plugins = get_option('mainwp_creport_hide_child_plugins', 'yes');
|
180 |
// to fix can not set default checked checkbox
|
181 |
$checkbox_hide_childs = '<tr><th scope="row"><label for="mainwp_creport_hide_child_plugins">' . $chk_label;
|
182 |
$checkbox_hide_childs .= '</label></th><td><label><input name="mainwp_creport_hide_child_plugins" id="mainwp_creport_hide_child_plugins" value="1" type="checkbox" ' . ($hide_child_plugins == 'yes' ? 'checked' : '') . '> ';
|
183 |
+
$checkbox_hide_childs .= '</label><p class="description">' . $chk_desc . '</p></td></tr>';
|
184 |
|
185 |
self::$fields = array(
|
186 |
'general' => array(
|
mainwp-child-reports.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Description: The MainWP Child Report plugin tracks Child sites for the MainWP Client Reports Extension. The plugin is only useful if you are using MainWP and the Client Reports Extension.
|
6 |
Author: MainWP
|
7 |
Author URI: https://mainwp.com
|
8 |
-
Version: 1.
|
9 |
*/
|
10 |
|
11 |
/**
|
5 |
Description: The MainWP Child Report plugin tracks Child sites for the MainWP Client Reports Extension. The plugin is only useful if you are using MainWP and the Client Reports Extension.
|
6 |
Author: MainWP
|
7 |
Author URI: https://mainwp.com
|
8 |
+
Version: 1.5
|
9 |
*/
|
10 |
|
11 |
/**
|
readme.txt
CHANGED
@@ -2,12 +2,12 @@
|
|
2 |
Contributors: MainWP
|
3 |
Donate link:
|
4 |
Tags: MainWP Child Reports, MainWP, MainWP Child, MainWP Client Reports Extension, child reports, reports, actions, activity, admin, analytics, dashboard, log, notification, users, Backupwordpress, Updraftplus
|
5 |
-
Author:
|
6 |
Author URI: https://mainwp.com
|
7 |
Plugin URI: https://mainwp.com
|
8 |
Requires at least: 3.6
|
9 |
-
Tested up to: 4.7.
|
10 |
-
Stable tag: 1.
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
@@ -36,6 +36,9 @@ Credit to the [Stream Plugin](https://wordpress.org/plugins/stream/) which the M
|
|
36 |
|
37 |
== Changelog ==
|
38 |
|
|
|
|
|
|
|
39 |
= 1.4 - 2-13-2017 =
|
40 |
* Fixed: an issue with creating database table on first installation
|
41 |
|
2 |
Contributors: MainWP
|
3 |
Donate link:
|
4 |
Tags: MainWP Child Reports, MainWP, MainWP Child, MainWP Client Reports Extension, child reports, reports, actions, activity, admin, analytics, dashboard, log, notification, users, Backupwordpress, Updraftplus
|
5 |
+
Author: mainwp
|
6 |
Author URI: https://mainwp.com
|
7 |
Plugin URI: https://mainwp.com
|
8 |
Requires at least: 3.6
|
9 |
+
Tested up to: 4.7.3
|
10 |
+
Stable tag: 1.5
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
36 |
|
37 |
== Changelog ==
|
38 |
|
39 |
+
= 1.5 - 3-15-2017 =
|
40 |
+
* Fixed: a few typos
|
41 |
+
|
42 |
= 1.4 - 2-13-2017 =
|
43 |
* Fixed: an issue with creating database table on first installation
|
44 |
|