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 "
"; } } Hello world! – Ein Hoch auf die Sonne

Hello world!

Written by

in

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Comments

Ein Kommentar zu „Hello world!“

  1. Avatar von A WordPress Commenter

    Hi, this is a comment.
    To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
    Commenter avatars come from Gravatar.

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert