diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-03-07 20:53:19 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-03-07 20:53:19 +0100 |
commit | 782e7aea5ad3d866f5b1e93ca202649a527e361b (patch) | |
tree | 9e30050b758ffed8ff694609922001270df8a551 /includes | |
parent | f217a37beb156fb8211a6c812204873ef5a4ba39 (diff) | |
download | gigologadmin-782e7aea5ad3d866f5b1e93ca202649a527e361b.tar.gz gigologadmin-782e7aea5ad3d866f5b1e93ca202649a527e361b.tar.bz2 gigologadmin-782e7aea5ad3d866f5b1e93ca202649a527e361b.zip |
Expand the main Giglog admin page.
Display the table for assigning photographers to the different gigs on
the main admin page for the plugin. Somehow this does not work as it
should, but leave that for later.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/admin/views/giglog_admin_page.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/includes/admin/views/giglog_admin_page.php b/includes/admin/views/giglog_admin_page.php index 45a9f3f..9f9786c 100644 --- a/includes/admin/views/giglog_admin_page.php +++ b/includes/admin/views/giglog_admin_page.php @@ -19,7 +19,13 @@ if ( !class_exists( 'GiglogAdmin_AdminPage' ) ) { class GiglogAdmin_AdminPage { static function render_html() { - echo '<div class="wrap"><h1>Hi there admin!</h1></div>'; + ?> + <div class="wrap"> + <h1>Giglog Admin</h1> + <p><?php echo giglogadmin_getfiltersphotog(); ?></p> + <p><?php echo giglogadmin_getconcertsphotog(); ?></p> + </div> + <?php } } } |