From 277fedffc624f55c6ecc8bd80ed8db370134e47e Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Fri, 20 Jan 2023 20:22:06 +0100 Subject: Rename and reorganize more source files. --- includes/admin/views/giglog_admin_page.php | 91 ------------------------------ 1 file changed, 91 deletions(-) delete mode 100644 includes/admin/views/giglog_admin_page.php (limited to 'includes/admin/views/giglog_admin_page.php') diff --git a/includes/admin/views/giglog_admin_page.php b/includes/admin/views/giglog_admin_page.php deleted file mode 100644 index acd0172..0000000 --- a/includes/admin/views/giglog_admin_page.php +++ /dev/null @@ -1,91 +0,0 @@ - -// SPDX-FileCopyrightText: 2021 Harald Eilertsen -// -// SPDX-License-Identifier: AGPL-3.0-or-later - -if ( ! class_exists( 'GiglogAdmin_AdminPage' ) ) { - require_once __DIR__ . '/../../class-giglogadmin-venue.php'; - require_once __DIR__ . '/_concerts_table.php'; - require_once __DIR__ . '/_edit_concert_form.php'; - require_once __DIR__ . '/_new_venue_form.php'; - - class GiglogAdmin_AdminPage { - - const STATUS_LABELS = array( - '', - 'Accred Requested', - 'Photo Approved', - 'Text Approved', - 'Photo and Text Approved', - 'Rejected', - ); - - public static function render_html() : void { - $page = new self(); - $page->render_page(); - } - - private function render_page() : void { - $concerts = new GiglogAdmin_ConcertsTable(); - ?> -
-

Giglog Admin

- -

The available slots are marked with the green checkbox. - If you click on it, it will be assigned to you and if you no longer - wish to cover that concert, click on the red icon and you will be - unassigned. A mail should be sent to the admin when this happens, - but in order for the accreditation request to be sent, you have to - mail live@eternal-terror.com with the template containing concert - information. There might be some exceptions, but those are discussed - case by case. So whenever you want a concert, assign yourself and send - the template no later than 3 weeks before the concert.

- -

Admin will try to keep the concert status updated so that you know - what the accreditation status is. You will get personal message if this - is really close to the concert date.

- -

render(); ?>

-
- -
-

Form to create/edit concerts and venues

-
-
- render() . $venue_form->render(); ?> -
-