PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.4
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.4
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / inc / admin / views / dashboard / plugin-status / html-results.php

html-results.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.4.4, at inc/admin/views/dashboard/plugin-status/html-results.php

39 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for displaying LP information.
4 */
5 defined( 'ABSPATH' ) || exit();
6
7 if ( ! isset( $plugin_data ) || is_wp_error( $plugin_data ) ) {
8 return;
9 }
10 ?>
11
12 <div class="rss-widget">
13 <ul>
14 <li>
15 <a href="<?php echo esc_url_raw( $plugin_data->homepage ); ?>" class="rsswidget" target="_blank"><?php echo esc_html( $plugin_data->name ); ?></a>
16 </li>
17 <li>
18 <?php
19 if ( ! empty( $plugin_data->downloaded ) ) {
20 printf( '<span><strong>%s</strong></span>: %s', esc_html__( 'Downloaded', 'learnpress' ), number_format( $plugin_data->downloaded ) );
21 }
22 ?>
23 <?php printf( '<span><strong>%s</strong></span>: %s', esc_html__( 'Active Installation', 'learnpress' ), number_format( $plugin_data->active_installs ) ); ?>
24 </li>
25 </ul>
26 </div>
27 <div class="rss-widget">
28 <ul>
29 <li>
30 <div class="rssSummary">
31 <?php echo esc_html( $plugin_data->short_description ); ?>
32 </div>
33 </li>
34 </ul>
35 </div>
36 <p><?php printf( '<strong>%s</strong>: %s', esc_html__( 'Published', 'learnpress' ), date_i18n( get_option( 'date_format' ), strtotime( $plugin_data->added ) ) ); ?></p>
37 <p><?php printf( '<strong>%s</strong>: %s', esc_html__( 'Updated', 'learnpress' ), date_i18n( get_option( 'date_format' ), strtotime( $plugin_data->last_updated ) ) ); ?></p>
38 <p><?php printf( '<strong>%s</strong>: %s', esc_html__( 'Current Version', 'learnpress' ), $plugin_data->version ); ?></p>
39