class TP_Admin { public function __construct() { add_action('admin_menu', [$this, 'registerMenus']); } public function registerMenus() { add_menu_page( 'Training', 'Training', 'manage_options', 'tp-dashboard', [$this, 'dashboardPage'], 'dashicons-chart-line', 26 ); add_submenu_page( 'tp-dashboard', 'Übungen', 'Übungen', 'manage_options', 'tp-exercises', ['TP_Admin_Exercises', 'listPage'] ); add_submenu_page( 'tp-dashboard', 'Neue Übung', 'Neue Übung', 'manage_options', 'tp-exercise-new', ['TP_Admin_Exercises', 'editPage'] ); add_submenu_page( 'tp-dashboard', 'Ergebnisse', 'Ergebnisse', 'manage_options', 'tp-results', ['TP_Admin_Results', 'listPage'] ); add_submenu_page( 'tp-dashboard', 'Einstellungen', 'Einstellungen', 'manage_options', 'tp-settings', ['TP_Admin_Settings', 'page'] ); } public function dashboardPage() { echo "
"; echo "

Training Plugin

"; echo "

Willkommen.

"; echo "
"; } } Uncategorized – Ein Hoch auf die Sonne

Kategorie: Uncategorized