PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.3.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.3.8
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 / TemplateHooks / Profile / ProfileStudentStatisticsTemplate.php

ProfileStudentStatisticsTemplate.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.3.8, at inc/TemplateHooks/Profile/ProfileStudentStatisticsTemplate.php

38 lines 825 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template hooks Archive Package.
4 *
5 * @since 1.0.0
6 * @version 1.0.0
7 */
8 namespace LearnPress\TemplateHooks\Profile;
9
10 use LearnPress\Helpers\Template;
11
12 class ProfileStudentStatisticsTemplate {
13 public static function instance() {
14 static $instance = null;
15
16 if ( is_null( $instance ) ) {
17 $instance = new self();
18 }
19
20 return $instance;
21 }
22
23 protected function __construct() {
24 add_action( 'learn-press/profile/layout/student-statistics', [ $this, 'sections' ], 2 );
25 }
26
27 public function sections( $data ) {
28 $template_path = apply_filters(
29 'learn-press/profile/layout/student-statistics/item-count',
30 LP_PLUGIN_PATH . 'templates/profile/tabs/statistics/item-count.php'
31 );
32 Template::instance()->get_template(
33 $template_path,
34 compact( 'data' )
35 );
36 }
37 }
38