array(
'title' => esc_html__( 'Dashboard', 'learnpress' ),
'slug' => 'dashboard',
'icon' => '',
'sub_menu' => [],
'priority' => 0,
),
'courses' => array(
'title' => esc_html__( 'Courses', 'learnpress' ),
'slug' => 'courses',
'icon' => '',
'sub_menu' => [],
'priority' => 10,
),
'lessons' => array(
'title' => esc_html__( 'Lessons', 'learnpress' ),
'slug' => 'lessons',
'icon' => '',
'priority' => 20,
'sections' => array(
'overview' => array(
'title' => esc_html__( 'Overview', 'learnpress' ),
'slug' => 'overview',
),
'settings' => array(
'title' => esc_html__( 'Settings', 'learnpress' ),
'slug' => 'settings',
),
),
),
'quizzes' => array(
'title' => esc_html__( 'Quizzes', 'learnpress' ),
'slug' => 'quizzes',
'icon' => '',
'priority' => 30,
'sections' => array(
'overview' => array(
'title' => esc_html__( 'Overview', 'learnpress' ),
'slug' => 'overview',
),
'question' => array(
'title' => esc_html__( 'Question', 'learnpress' ),
'slug' => 'question',
),
'settings' => array(
'title' => esc_html__( 'Settings', 'learnpress' ),
'slug' => 'settings',
),
),
),
'questions' => array(
'title' => esc_html__( 'Questions', 'learnpress' ),
'slug' => 'questions',
'icon' => '',
'priority' => 40,
'sections' => array(
'overview' => array(
'title' => esc_html__( 'Overview', 'learnpress' ),
'slug' => 'overview',
),
'settings' => array(
'title' => esc_html__( 'Settings', 'learnpress' ),
'slug' => 'settings',
),
),
),
'settings' => array(
'title' => esc_html__( 'Settings', 'learnpress' ),
'slug' => 'settings',
'icon' => '',
'priority' => 50,
'admin_only' => true,
'sub_menu' => [],
),
];
return apply_filters(
'learn-press/course-builder/menus',
$menu_arr
);