[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.166.178: ~ $
<?php
class Education_LMS_Customize_Pro_Control extends WP_Customize_Control {
	public $type = 'education_lms_pro';
	function render_content(){
		if ( ! empty( $this->label ) ) : ?>
            <span class="customize-control-title education-pro-title"><?php echo esc_html( $this->label ); ?></span>
		<?php endif;
		if ( ! empty( $this->description ) ) : ?>
            <div class="description customize-control-description education-pro-description"><?php echo $this->description ; ?></div>
		<?php endif; ?>
		<?php
	}
}


	class Education_LMS_Customize_Radio_Image_Control extends WP_Customize_Control {
		public $type = 'radio-image';

		function render_content() {
			if ( empty( $this->choices ) ) {
				return;
			}
			$name = '_customize-radio-' . $this->id;
			if ( ! empty( $this->label ) ) : ?>
                <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
			<?php endif;
			if ( ! empty( $this->description ) ) : ?>
                <span class="description customize-control-description"><?php echo $this->description; ?></span>
			<?php endif; ?>
            <div class="choices">
				<?php foreach ( $this->choices as $value => $item ) {
					$is_pro = isset( $item['pro'] ) && $item['pro'] ? true : false;
					$label  = isset( $item['label'] ) ? $item['label'] : '';
					?>
                    <div class="col">
						<?php if ( $is_pro ) { ?>
                            <a title="<?php echo esc_attr( $label ); ?>"
                               href="<?php echo ( isset( $item['link'] ) ) ? esc_url( $item['link'] ) : '#'; ?>"
                               target="_blank" class="choice-item <?php echo ( $is_pro ) ? 'pro-item' : ''; ?>">
                                <span class="pr"><?php esc_html_e( 'Pro', 'education-lms' ); ?></span>
                                <img src="<?php echo esc_attr( $item['img'] ); ?>" alt="">
                            </a>
						<?php } else { ?>
                            <label title="<?php echo esc_attr( $label ); ?>"
                                   class="choice-item <?php echo ( $is_pro ) ? 'pro-item' : ''; ?>">
                                <input type="radio" value="<?php echo esc_attr( $value ); ?>"
                                       name="<?php echo esc_attr( $name ); ?>" <?php $this->link();
								checked( $this->value(), $value ); ?> />
                                <img src="<?php echo esc_attr( $item['img'] ); ?>" alt="">
                            </label>
						<?php } ?>
                    </div>
					<?php
				} ?>
            </div>
			<?php
		}
	}

Filemanager

Name Type Size Permission Actions
elementors Folder 0755
typography-wp Folder 0755
course-widget.php File 7.03 KB 0644
custom-header.php File 1.96 KB 0644
customizer-controls.php File 2.59 KB 0644
customizer.php File 30.49 KB 0644
dashboard.php File 4.21 KB 0644
elementors.php File 1.52 KB 0644
metabox.php File 4.04 KB 0644
template-functions.php File 24.82 KB 0644
template-tags.php File 12.13 KB 0644
tgm.php File 124.14 KB 0644
widgets.php File 6.15 KB 0644