← All changes
|
inc/ExternalPlugin/Elementor/Widgets/Course/Dynamic/CountStudentDynamicElementor.php
+36
-36
4.3.8
→
4.4.8
View file →
| @@ -1,36 +1,36 @@ | ||
| 1 | -<?php | |
| 2 | -/** | |
| 3 | - * Class CountStudentDynamicElementor | |
| 4 | - * | |
| 5 | - * Dynamic count student of many courses elementor. | |
| 6 | - * | |
| 7 | - * @since 4.2.5.4 | |
| 8 | - * @version 1.0.0 | |
| 9 | - */ | |
| 10 | -namespace LearnPress\ExternalPlugin\Elementor\Widgets\Course\Dynamic; | |
| 11 | -use Elementor\Core\DynamicTags\Tag; | |
| 12 | -use LearnPress\ExternalPlugin\Elementor\LPDynamicElementor; | |
| 13 | -use LearnPress\TemplateHooks\Course\ListCoursesTemplate; | |
| 14 | -use Throwable; | |
| 15 | - | |
| 16 | -defined( 'ABSPATH' ) || exit; | |
| 17 | - | |
| 18 | -class CountStudentDynamicElementor extends Tag { | |
| 19 | - use LPDynamicElementor; | |
| 20 | - | |
| 21 | - public function __construct( array $data = [] ) { | |
| 22 | - $this->lp_dynamic_title = 'Count Student many courses'; | |
| 23 | - $this->lp_dynamic_name = 'count-student-courses'; | |
| 24 | - parent::__construct( $data ); | |
| 25 | - } | |
| 26 | - | |
| 27 | - public function render() { | |
| 28 | - $listCoursesTemplate = ListCoursesTemplate::instance(); | |
| 29 | - | |
| 30 | - try { | |
| 31 | - echo $listCoursesTemplate->html_count_students(); | |
| 32 | - } catch ( Throwable $e ) { | |
| 33 | - error_log( $e->getMessage() ); | |
| 34 | - } | |
| 35 | - } | |
| 36 | -} | |
| 1 | +<?php | |
| 2 | +/** | |
| 3 | + * Class CountStudentDynamicElementor | |
| 4 | + * | |
| 5 | + * Dynamic count student of many courses elementor. | |
| 6 | + * | |
| 7 | + * @since 4.2.5.4 | |
| 8 | + * @version 1.0.0 | |
| 9 | + */ | |
| 10 | +namespace LearnPress\ExternalPlugin\Elementor\Widgets\Course\Dynamic; | |
| 11 | +use Elementor\Core\DynamicTags\Tag; | |
| 12 | +use LearnPress\ExternalPlugin\Elementor\LPDynamicElementor; | |
| 13 | +use LearnPress\TemplateHooks\Course\ListCoursesTemplate; | |
| 14 | +use Throwable; | |
| 15 | + | |
| 16 | +defined( 'ABSPATH' ) || exit; | |
| 17 | + | |
| 18 | +class CountStudentDynamicElementor extends Tag { | |
| 19 | + use LPDynamicElementor; | |
| 20 | + | |
| 21 | + public function __construct( array $data = [] ) { | |
| 22 | + $this->lp_dynamic_title = 'Count Student many courses'; | |
| 23 | + $this->lp_dynamic_name = 'count-student-courses'; | |
| 24 | + parent::__construct( $data ); | |
| 25 | + } | |
| 26 | + | |
| 27 | + public function render() { | |
| 28 | + $listCoursesTemplate = ListCoursesTemplate::instance(); | |
| 29 | + | |
| 30 | + try { | |
| 31 | + echo $listCoursesTemplate->html_count_students(); | |
| 32 | + } catch ( Throwable $e ) { | |
| 33 | + error_log( $e->getMessage() ); | |
| 34 | + } | |
| 35 | + } | |
| 36 | +} | |