summaryrefslogtreecommitdiffstats
path: root/includes/roles.php
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-06-27 13:05:08 +0200
committerHarald Eilertsen <haraldei@anduin.net>2021-06-27 23:29:03 +0200
commit224f0149ea513146b164736f461e6cbba4b86add (patch)
treef989ad000bea8109713cec28bc99fdf325f13a97 /includes/roles.php
parent184f1e3f971423fad351de2b2fbde6f436e6d9ce (diff)
downloadgigologadmin-224f0149ea513146b164736f461e6cbba4b86add.tar.gz
gigologadmin-224f0149ea513146b164736f461e6cbba4b86add.tar.bz2
gigologadmin-224f0149ea513146b164736f461e6cbba4b86add.zip
Begin move roles and status field to concerts table.
Diffstat (limited to 'includes/roles.php')
-rw-r--r--includes/roles.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/includes/roles.php b/includes/roles.php
new file mode 100644
index 0000000..dbbedd2
--- /dev/null
+++ b/includes/roles.php
@@ -0,0 +1,12 @@
+<?php
+
+if ( ! class_exists( 'GiglogAdmin_Roles' ) )
+{
+ class GiglogAdmin_Roles
+ {
+ public const PHOTO1 = 0;
+ public const PHOTO2 = 1;
+ public const TEXT1 = 2;
+ public const TEXT2 = 3;
+ }
+}