PluginProbe
Adminify – White Label, Admin Menu Editor, Login Customizer / 3.1.6
Adminify – White Label, Admin Menu Editor, Login Customizer v3.1.6
4.3.1 4.3.0 4.2.26 4.2.25 4.2.24 4.2.23 4.2.22 4.2.21 4.2.20 4.2.19 4.2.18 4.2.17 4.2.16 4.2.15 4.2.14 4.2.13 4.2.12 4.2.11 4.2.10 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 4.1.17 All 164 releases
adminify / lib / freemius / templates / debug / plugins-themes-sync.php

plugins-themes-sync.php in Adminify – White Label, Admin Menu Editor, Login Customizer 3.1.6, at lib/freemius/templates/debug/plugins-themes-sync.php

77 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package Freemius
4 * @copyright Copyright (c) 2015, Freemius, Inc.
5 * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
6 * @since 1.1.7.3
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit;
11 }
12
13 $fs_options = FS_Options::instance( WP_FS__ACCOUNTS_OPTION_NAME, true );
14 $all_plugins = $fs_options->get_option( 'all_plugins' );
15 $all_themes = $fs_options->get_option( 'all_themes' );
16
17 /* translators: %s: time period (e.g. In "2 hours") */
18 $in_x_text = fs_text_inline( 'In %s', 'in-x' );
19 /* translators: %s: time period (e.g. "2 hours" ago) */
20 $x_ago_text = fs_text_inline( '%s ago', 'x-ago' );
21 $sec_text = fs_text_x_inline( 'sec', 'seconds' );
22 ?>
23 <h1><?php fs_esc_html_echo_inline( 'Plugins & Themes Sync', 'plugins-themes-sync' ) ?></h1>
24 <table class="widefat">
25 <thead>
26 <tr>
27 <th></th>
28 <th><?php fs_esc_html_echo_inline( 'Total', 'total' ) ?></th>
29 <th><?php fs_esc_html_echo_inline( 'Last', 'last' ) ?></th>
30 </tr>
31 </thead>
32 <tbody>
33 <?php if ( is_object( $all_plugins ) ) : ?>
34 <tr>
35 <td><?php fs_esc_html_echo_inline( 'Plugins', 'plugins' ) ?></td>
36 <td><?php echo count( $all_plugins->plugins ) ?></td>
37 <td><?php
38 if ( isset( $all_plugins->timestamp ) && is_numeric( $all_plugins->timestamp ) ) {
39 $diff = abs( WP_FS__SCRIPT_START_TIME - $all_plugins->timestamp );
40 $human_diff = ( $diff < MINUTE_IN_SECONDS ) ?
41 $diff . ' ' . $sec_text :
42 human_time_diff( WP_FS__SCRIPT_START_TIME, $all_plugins->timestamp );
43
44 echo esc_html( sprintf(
45 ( ( WP_FS__SCRIPT_START_TIME < $all_plugins->timestamp ) ?
46 $in_x_text :
47 $x_ago_text ),
48 $human_diff
49 ) );
50 }
51 ?></td>
52 </tr>
53 <?php endif ?>
54 <?php if ( is_object( $all_themes ) ) : ?>
55 <tr>
56 <td><?php fs_esc_html_echo_inline( 'Themes', 'themes' ) ?></td>
57 <td><?php echo count( $all_themes->themes ) ?></td>
58 <td><?php
59 if ( isset( $all_themes->timestamp ) && is_numeric( $all_themes->timestamp ) ) {
60 $diff = abs( WP_FS__SCRIPT_START_TIME - $all_themes->timestamp );
61 $human_diff = ( $diff < MINUTE_IN_SECONDS ) ?
62 $diff . ' ' . $sec_text :
63 human_time_diff( WP_FS__SCRIPT_START_TIME, $all_themes->timestamp );
64
65 echo esc_html( sprintf(
66 ( ( WP_FS__SCRIPT_START_TIME < $all_themes->timestamp ) ?
67 $in_x_text :
68 $x_ago_text ),
69 $human_diff
70 ) );
71 }
72 ?></td>
73 </tr>
74 <?php endif ?>
75 </tbody>
76 </table>
77