summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2022-02-12 19:50:47 +0100
committerHarald Eilertsen <haraldei@anduin.net>2022-02-12 19:50:47 +0100
commit87d6572d92b10ae9f987efbb84360542eb3d15dc (patch)
tree74e2cd10517ba611d60410a549015cdd31eb5cc0
parent5b26e3982846b637993622d9ad6de26ab9d352e6 (diff)
downloadgigologadmin-87d6572d92b10ae9f987efbb84360542eb3d15dc.tar.gz
gigologadmin-87d6572d92b10ae9f987efbb84360542eb3d15dc.tar.bz2
gigologadmin-87d6572d92b10ae9f987efbb84360542eb3d15dc.zip
Fix indentation and add license info.
-rw-r--r--giglogadmin.php200
-rw-r--r--includes/giglog_visitor_display.php5
2 files changed, 104 insertions, 101 deletions
diff --git a/giglogadmin.php b/giglogadmin.php
index c0dfa49..b9155cb 100644
--- a/giglogadmin.php
+++ b/giglogadmin.php
@@ -1,27 +1,26 @@
<?php
/**
-* Gigolog Admin
-*
-* @package giglogadmin
-* @author Andrea Chirulescu, Harald Eilertsen
-* @copyright 2021 Andrea Chirulescu, Harald Eilertsen
-* @license AGPL-3.0-or-later
-*
-* @wordpress-plugin
-* Plugin Name: Giglog Admin
-* Plugin URI: https://code.volse.no/wp/plugins/giglogadmin
-* Description: Scheduling journalists and photographers to cover concerts or events.
-* Version: 0.1.0
-* Author: Andrea Chirulescu, Harald Eilertsen
-* License: AGPLv3
-* License URI: https://www.gnu.org/licenses/agpl-3.0.txthttps://www.gnu.org/licenses/agpl-3.0.txt
-*/
-
-// SPDX-FileCopyrightText: 2021 Andrea Chirulescu <andrea.chirulescu@gmail.com>
-// SPDX-FileCopyrightText: 2021 Harald Eilertsen <haraldei@anduin.net>
-//
-// SPDX-License-Identifier: AGPL-3.0-or-later
-
+ * Gigolog Admin
+ *
+ * @package giglogadmin
+ * @author Andrea Chirulescu, Harald Eilertsen
+ * @copyright 2021 Andrea Chirulescu, Harald Eilertsen
+ * @license AGPL-3.0-or-later
+ *
+ * @wordpress-plugin
+ * Plugin Name: Giglog Admin
+ * Plugin URI: https://code.volse.no/wp/plugins/giglogadmin
+ * Description: Scheduling journalists and photographers to cover concerts or events.
+ * Version: 0.1.0
+ * Author: Andrea Chirulescu, Harald Eilertsen
+ * License: AGPLv3
+ * License URI: https://www.gnu.org/licenses/agpl-3.0.txt
+ *
+ * SPDX-FileCopyrightText: 2021 Andrea Chirulescu <andrea.chirulescu@gmail.com>
+ * SPDX-FileCopyrightText: 2021 Harald Eilertsen <haraldei@anduin.net>
+ *
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
if ( !class_exists( 'GiglogAdmin_Plugin' ) ) {
@@ -61,11 +60,11 @@ if ( !class_exists( 'GiglogAdmin_Plugin' ) ) {
}
/**
- * Adds the 'Giglog' top level menu to the left side WordPress admin
- * menu. Other subpages will come later.
- *
- * @return void
- */
+ * Adds the 'Giglog' top level menu to the left side WordPress admin
+ * menu. Other subpages will come later.
+ *
+ * @return void
+ */
static function add_admin_pages(): void {
if ( ! current_user_can( 'manage_options' ) ) {
return;
@@ -79,77 +78,76 @@ if ( !class_exists( 'GiglogAdmin_Plugin' ) ) {
'dashicons-tickets-alt', // Icon url
11); // Position, just below 'Media'
- add_action( 'load-' . $top, array( 'GiglogAdmin_AdminPage', 'update' ) );
-
- $import_hook = add_submenu_page(
- "giglog", // parent slug
- "Import gigs", // page title
- "Import gigs", // menu title
- "upload_files", // required capability
- "giglog_import", // menu slug
- array( 'GiglogAdmin_ImportGigsPage', 'render_html' )); // callable
-
- if ($import_hook !== false) {
- add_action(
- 'load-' . $import_hook,
- array( 'GiglogAdmin_ImportGigsPage', 'submit_form' ) );
- }
-
- wp_register_style( 'css_style', plugins_url( '/includes/css/main.css', __FILE__ ) );
- wp_enqueue_style('css_style');
- }
-
- static function add_help_pages(): void {
- if ( ! current_user_can( 'manage_options' ) ) {
- return;
- }
- add_menu_page(
- "Help for ET users", // Page title
- "Help for ET users", // Menu title
- "upload_files", // Will show for users with this capability
- "helpfiles", // menu slug
- array( 'Instructions_Page', 'render_instr_html' ), // callable
- 'dashicons-tickets-alt', // Icon url
- 10); // Position, just below 'Media'
-
- add_submenu_page(
- "helpfiles", // parent slug
- "Reviewer help files", // page title
- "Reviewer help files", // menu title
- "upload_files", // required capability
- "reviewer_help", // menu slug
- array( 'Instructions_Reviewers', 'render_instr_rev_html' )); // callable
-
- add_submenu_page(
- "helpfiles", // parent slug
- "Photogalleries help files", // page title
- "Photogalleries help files", // menu title
- "upload_files", // required capability
- "photog_help", // menu slug
- array( 'Instructions_Photogs', 'render_instr_photo_html' )); // callable
- }
-
- /*
- * Show menus based on whether user is logged in or not.
- *
- * Giglog admin pages should only be visible for logged in users/can eventually
- * be customized by role if needed
- */
- static function nav_menu_args( array $args = [] ) : array {
- if ( is_user_logged_in() ) {
- $args['menu'] = 'Loggedusers';
- } else {
- $args['menu'] = 'Notloggedusers';
- }
-
- return $args;
- }
-
- }
-
- register_activation_hook( __FILE__, array( 'GiglogAdmin_Plugin', 'activate' ));
- register_deactivation_hook( __FILE__, array( 'GiglogAdmin_Plugin', 'deactivate' ));
-
- GiglogAdmin_Plugin::init();
- }
- ?>
+ add_action( 'load-' . $top, array( 'GiglogAdmin_AdminPage', 'update' ) );
+
+ $import_hook = add_submenu_page(
+ "giglog", // parent slug
+ "Import gigs", // page title
+ "Import gigs", // menu title
+ "upload_files", // required capability
+ "giglog_import", // menu slug
+ array( 'GiglogAdmin_ImportGigsPage', 'render_html' )); // callable
+
+ if ($import_hook !== false) {
+ add_action(
+ 'load-' . $import_hook,
+ array( 'GiglogAdmin_ImportGigsPage', 'submit_form' ) );
+ }
+
+ wp_register_style( 'css_style', plugins_url( '/includes/css/main.css', __FILE__ ) );
+ wp_enqueue_style('css_style');
+ }
+
+ static function add_help_pages(): void {
+ if ( ! current_user_can( 'manage_options' ) ) {
+ return;
+ }
+ add_menu_page(
+ "Help for ET users", // Page title
+ "Help for ET users", // Menu title
+ "upload_files", // Will show for users with this capability
+ "helpfiles", // menu slug
+ array( 'Instructions_Page', 'render_instr_html' ), // callable
+ 'dashicons-tickets-alt', // Icon url
+ 10); // Position, just below 'Media'
+
+ add_submenu_page(
+ "helpfiles", // parent slug
+ "Reviewer help files", // page title
+ "Reviewer help files", // menu title
+ "upload_files", // required capability
+ "reviewer_help", // menu slug
+ array( 'Instructions_Reviewers', 'render_instr_rev_html' )); // callable
+
+ add_submenu_page(
+ "helpfiles", // parent slug
+ "Photogalleries help files", // page title
+ "Photogalleries help files", // menu title
+ "upload_files", // required capability
+ "photog_help", // menu slug
+ array( 'Instructions_Photogs', 'render_instr_photo_html' )); // callable
+ }
+
+ /*
+ * Show menus based on whether user is logged in or not.
+ *
+ * Giglog admin pages should only be visible for logged in users/can eventually
+ * be customized by role if needed
+ */
+ static function nav_menu_args( array $args = [] ) : array {
+ if ( is_user_logged_in() ) {
+ $args['menu'] = 'Loggedusers';
+ } else {
+ $args['menu'] = 'Notloggedusers';
+ }
+
+ return $args;
+ }
+
+ }
+
+ register_activation_hook( __FILE__, array( 'GiglogAdmin_Plugin', 'activate' ));
+ register_deactivation_hook( __FILE__, array( 'GiglogAdmin_Plugin', 'deactivate' ));
+
+ GiglogAdmin_Plugin::init();
+}
diff --git a/includes/giglog_visitor_display.php b/includes/giglog_visitor_display.php
index 567bf41..b4742f5 100644
--- a/includes/giglog_visitor_display.php
+++ b/includes/giglog_visitor_display.php
@@ -1,4 +1,9 @@
<?php declare(strict_types=1);
+// SPDX-FileCopyrightText: 2022 Andrea Chirulescu <andrea.chirulescu@gmail.com>
+// SPDX-FileCopyrightText: 2022 Harald Eilertsen <haraldei@anduin.net>
+//
+// SPDX-License-Identifier: AGPL-3.0-or-later
+
function display_giglog() : string
{
$c = new GiglogAdmin_ConcertsTable();