at path:
ROOT
/
wp-content
/
plugins
/
tutor
/
views
/
pages
/
tools.php
run:
R
W
Run
ecommerce
DIR
2026-04-14 05:34:27
R
W
Run
tools
DIR
2026-04-14 05:34:27
R
W
Run
add_new_instructor.php
5.02 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
addons.php
4.41 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
announcements.php
4.11 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
answer.php
3.54 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
course-builder.php
809 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
course-list.php
18.74 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
enable_disable_addons.php
245 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
feature-promotion.php
1.29 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
get-pro.php
567 By
2026-04-14 05:34:27
R
W
Run
Delete
Rename
instructors.php
20.32 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
question_answer.php
2.45 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
quiz_attempts.php
3.52 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
students.php
6.37 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
tools.php
1.45 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
view_attempt.php
2.06 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
welcome.php
10.32 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
whats-new.php
15.74 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
withdraw_requests.php
26.55 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
error_log
up
📄
tools.php
Save
<?php /** * Tools page * * @package Tutor\Views * @subpackage Tutor\Tools * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 2.0.0 */ ?> <div class="wrap"> <h1 class="wp-heading-inline"><?php esc_html_e( 'Tools', 'tutor' ); ?></h1> <hr class="wp-header-end"> <nav class="nav-tab-wrapper tutor-nav-tab-wrapper"> <?php if ( tutor_utils()->count( $pages ) ) { foreach ( $pages as $key => $page ) { $title = is_array( $page ) ? $page['title'] : $page; $active_class = $key == $current_page ? 'nav-tab-item-active' : ''; $url = add_query_arg( array( 'sub_page' => $key ) ); echo '<a href="' . esc_url( $url ) . '" class="nav-tab-item ' . esc_attr( $active_class ) . '">' . esc_attr( $title ) . '</a>'; } } ?> </nav> <div id="tutor-tools-page-wrap" class="tutor-tools-page-wrap"> <?php do_action( 'tutor_tools_page_' . esc_attr( $current_page ) . '_before' ); if ( ! empty( $pages[ $current_page ]['view_path'] ) && file_exists( $pages[ $current_page ]['view_path'] ) ) { include $pages[ $current_page ]['view_path']; } elseif ( file_exists( tutor()->path . 'views/pages/tools/' . esc_attr( $current_page ) . '.php' ) ) { include tutor()->path . 'views/pages/tools/' . esc_attr( $current_page ) . '.php'; } else { do_action( 'tutor_tools_page_' . esc_attr( $current_page ) . '' ); } do_action( 'tutor_tools_page_' . esc_attr( $current_page ) . '_after' ); ?> </div> </div>