File manager - Edit - /home/theblueo/questionnaire/wp-content/plugins/learndash-propanel/includes/class-ld-propanel-overview.php
Back
<?php /** * LearnDash ProPanel Overview * * @package LearnDash_ProPanel_Overview * @since 2.0 */ if ( !class_exists( 'LearnDash_ProPanel_Overview' ) ) { class LearnDash_ProPanel_Overview extends LearnDash_ProPanel_Widget { /** * @var string */ protected $name; /** * @var string */ protected $label; /** * LearnDash_ProPanel_Overview constructor. */ public function __construct() { $this->name = 'overview'; $this->label = esc_html__( 'ProPanel Overview', 'ld_propanel' ); parent::__construct(); add_filter( 'learndash_propanel_template_ajax', array( $this, 'overview_template' ), 10, 2 ); } function initial_template() { ?> <div class="ld-propanel-widget ld-propanel-widget-<?php echo $this->name ?> <?php echo ld_propanel_get_widget_screen_type_class( $this->name ); ?>" data-ld-widget-type="<?php echo $this->name ?>"></div> <?php } public function overview_template( $output, $template ) { if ( 'overview' == $template ) { ob_start(); include ld_propanel_get_template( 'ld-propanel-overview.php' ); $output = ob_get_clean(); } return $output; } } }
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings