summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-04-09 17:46:32 +0200
committerHarald Eilertsen <haraldei@anduin.net>2021-04-09 17:46:32 +0200
commite79c9b622e7e5754b1d1477e5252eb60084a57de (patch)
tree595d73405205036b91df0d6f00ac3cec03da7041
parentaac194d3b02c5a8e714494e97639a54667584167 (diff)
downloadgigologadmin-e79c9b622e7e5754b1d1477e5252eb60084a57de.tar.gz
gigologadmin-e79c9b622e7e5754b1d1477e5252eb60084a57de.tar.bz2
gigologadmin-e79c9b622e7e5754b1d1477e5252eb60084a57de.zip
Indentation and formatting nitpick.
-rw-r--r--includes/admin/views/giglog_admin_page.php48
1 files changed, 23 insertions, 25 deletions
diff --git a/includes/admin/views/giglog_admin_page.php b/includes/admin/views/giglog_admin_page.php
index 88c7fa2..b7d8397 100644
--- a/includes/admin/views/giglog_admin_page.php
+++ b/includes/admin/views/giglog_admin_page.php
@@ -55,30 +55,28 @@ if ( !class_exists( 'GiglogAdmin_AdminPage' ) ) {
</form>
<?php //currnet comment and above form can be removed once we decide how to...form. The form is meant to allow adding single concerts or editing one in the table.
}
- static function get_allvenues()
- { $select = '<select name="selectvenue">';
- foreach ( GiglogAdmin_Venue::all_venues() AS $venue )
- {
- $select .= '<option value="' . $venue -> id. '">'.$venue->vname;
- $select .='</option>';
- }
- $select .= '</select>';
- return($select);
- }
+ static function get_allvenues()
+ {
+ $select = '<select name="selectvenue">';
+ foreach ( GiglogAdmin_Venue::all_venues() AS $venue ) {
+ $select .= '<option value="' . $venue -> id. '">'.$venue->vname;
+ $select .='</option>';
+ }
+ $select .= '</select>';
+ return($select);
+ }
static function get_allbands()
{
- $select = '<select name="selectband">';
-
- foreach ( GiglogAdmin_Band::all_bands() AS $band )
- {
- $select .= '<option value="' . $band -> id. '">'.$band->vname;
- $select .='</option>';
- }
- $select .= '</select>';
- return($select);
+ $select = '<select name="selectband">';
+ foreach ( GiglogAdmin_Band::all_bands() AS $band ) {
+ $select .= '<option value="' . $band -> id. '">'.$band->vname;
+ $select .='</option>';
+ }
+ $select .= '</select>';
+ return($select);
}
static function get_filters()
@@ -148,21 +146,21 @@ if ( !class_exists( 'GiglogAdmin_AdminPage' ) ) {
}
//function to calculate if the concert has been added in the past 10 days or before that and show a green NEW for the newest rows
- static function getpublishstatus($concert_id)
- {
+ static function getpublishstatus($concert_id)
+ {
global $wpdb;
$date1 = new DateTime("now");
$dsql = "select wpgcl_createddate from wpg_concertlogs where wpgcl_concertid=".$concert_id;
$results = $wpdb->get_results($dsql);
- foreach ( $results AS $row )
- { //$x = strtotime($row -> filedate);
+ foreach ( $results AS $row ) {
+ //$x = strtotime($row -> filedate);
$x= date('Y-m-d H:i:s', strtotime($row -> wpgcl_createddate));
$date2 = new DateTime($x, new DateTimeZone('Europe/London'));
$dd = $date2 -> diff($date1) ->format("%a");
- }
+ }
if ($dd <= 10) return ('<span style="color:green">NEW</span>');
- }
+ }
static function get_concerts()