PluginProbe ʕ •ᴥ•ʔ
Auto Post Cleaner / 3.10.2
Auto Post Cleaner v3.10.2
3.12.0 3.13.1 3.2.4 3.2.5 3.3.0 3.3.10 3.3.11 3.3.8 3.4.2 3.5.3 3.6.0 3.7.0 3.7.1 3.7.2 3.7.3 3.7.5 3.7.6 3.8.0 3.9.0 3.9.4 3.9.6 3.9.7 trunk 3.0.0 3.1.0 3.10.1 3.10.2 3.11.4
delete-old-posts-programmatically / freemius / templates / debug / plugins-themes-sync.php
delete-old-posts-programmatically / freemius / templates / debug Last commit date
api-calls.php 5 years ago index.php 5 years ago logger.php 5 years ago plugins-themes-sync.php 5 years ago scheduled-crons.php 11 months ago
plugins-themes-sync.php
77 lines
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