Fixes formatting

main
Yasen Pramatarov 2024-12-01 10:58:42 +02:00
parent 0808f573fc
commit a6b0553393
1 changed files with 178 additions and 178 deletions

View File

@ -11,28 +11,28 @@ if ($response['db'] === null) {
} else { } else {
$db = $response['db']; $db = $response['db'];
// //
// dashboard widget listings // dashboard widget listings
// //
//// ////
// monthly usage // monthly usage
$conferenceObject = new Conference($db); $conferenceObject = new Conference($db);
$participantObject = new Participant($db); $participantObject = new Participant($db);
// monthly conferences for the last year // monthly conferences for the last year
$fromMonth = (new DateTime())->sub(new DateInterval('P1Y')); $fromMonth = (new DateTime())->sub(new DateInterval('P1Y'));
$fromMonth->modify('first day of this month'); $fromMonth->modify('first day of this month');
$thisMonth = new DateTime(); $thisMonth = new DateTime();
$from_time = $fromMonth->format('Y-m-d'); $from_time = $fromMonth->format('Y-m-d');
$until_time = $thisMonth->format('Y-m-d'); $until_time = $thisMonth->format('Y-m-d');
$widget['records'] = array(); $widget['records'] = array();
// loop 1 year in the past // loop 1 year in the past
$i = 0; $i = 0;
while ($fromMonth < $thisMonth) { while ($fromMonth < $thisMonth) {
$untilMonth = clone $fromMonth; $untilMonth = clone $fromMonth;
$untilMonth->modify('last day of this month'); $untilMonth->modify('last day of this month');
@ -59,39 +59,39 @@ while ($fromMonth < $thisMonth) {
$untilMonth->add(new DateInterval('P1M')); $untilMonth->add(new DateInterval('P1M'));
$fromMonth->add(new DateInterval('P1M')); $fromMonth->add(new DateInterval('P1M'));
$i++; $i++;
} }
$time_range_specified = true; $time_range_specified = true;
// prepare the widget // prepare the widget
$widget['full'] = false; $widget['full'] = false;
$widget['name'] = 'LastYearMonths'; $widget['name'] = 'LastYearMonths';
$widget['title'] = 'Conferences monthly stats for the last year'; $widget['title'] = 'Conferences monthly stats for the last year';
$widget['collapsible'] = true; $widget['collapsible'] = true;
$widget['collapsed'] = false; $widget['collapsed'] = false;
$widget['filter'] = false; $widget['filter'] = false;
if (!empty($searchConferenceNumber) && !empty($searchParticipantNumber)) { if (!empty($searchConferenceNumber) && !empty($searchParticipantNumber)) {
$widget['full'] = true; $widget['full'] = true;
} }
$widget['pagination'] = false; $widget['pagination'] = false;
// display the widget // display the widget
include '../app/templates/widget-monthly.php'; include '../app/templates/widget-monthly.php';
//// ////
// conferences in last 2 days // conferences in last 2 days
// time range limit // time range limit
$from_time = date('Y-m-d', time() - 60 * 60 * 24 * 2); $from_time = date('Y-m-d', time() - 60 * 60 * 24 * 2);
$until_time = date('Y-m-d', time()); $until_time = date('Y-m-d', time());
$time_range_specified = true; $time_range_specified = true;
// prepare the result // prepare the result
$search = $conferenceObject->conferencesAllFormatted($from_time, $until_time); $search = $conferenceObject->conferencesAllFormatted($from_time, $until_time);
if (!empty($search)) { if (!empty($search)) {
$conferences = array(); $conferences = array();
$conferences['records'] = array(); $conferences['records'] = array();
@ -119,40 +119,40 @@ if (!empty($search)) {
// populate the result array // populate the result array
array_push($conferences['records'], $conference_record); array_push($conferences['records'], $conference_record);
} }
} }
// prepare the widget // prepare the widget
$widget['full'] = false; $widget['full'] = false;
$widget['name'] = 'LastDays'; $widget['name'] = 'LastDays';
$widget['title'] = 'Conferences for the last 2 days'; $widget['title'] = 'Conferences for the last 2 days';
$widget['collapsible'] = true; $widget['collapsible'] = true;
$widget['collapsed'] = false; $widget['collapsed'] = false;
$widget['filter'] = false; $widget['filter'] = false;
if (!empty($conferences['records'])) { if (!empty($conferences['records'])) {
$widget['full'] = true; $widget['full'] = true;
$widget['table_headers'] = array_keys($conferences['records'][0]); $widget['table_headers'] = array_keys($conferences['records'][0]);
$widget['table_records'] = $conferences['records']; $widget['table_records'] = $conferences['records'];
} }
$widget['pagination'] = false; $widget['pagination'] = false;
// display the widget // display the widget
include '../app/templates/widget.php'; include '../app/templates/widget.php';
//// ////
// last 10 conferences // last 10 conferences
// all time // all time
$from_time = '0000-01-01'; $from_time = '0000-01-01';
$until_time = '9999-12-31'; $until_time = '9999-12-31';
$time_range_specified = false; $time_range_specified = false;
// number of conferences to show // number of conferences to show
$conference_number = 10; $conference_number = 10;
// prepare the result // prepare the result
$search = $conferenceObject->conferencesAllFormatted($from_time, $until_time); $search = $conferenceObject->conferencesAllFormatted($from_time, $until_time);
if (!empty($search)) { if (!empty($search)) {
$conferences = array(); $conferences = array();
$conferences['records'] = array(); $conferences['records'] = array();
@ -185,25 +185,25 @@ if (!empty($search)) {
$i++; $i++;
if ($i == 10) break; if ($i == 10) break;
} }
} }
// prepare the widget // prepare the widget
$widget['full'] = false; $widget['full'] = false;
$widget['name'] = 'LastConferences'; $widget['name'] = 'LastConferences';
$widget['title'] = 'The last ' . $conference_number . ' conferences'; $widget['title'] = 'The last ' . $conference_number . ' conferences';
$widget['collapsible'] = true; $widget['collapsible'] = true;
$widget['collapsed'] = false; $widget['collapsed'] = false;
$widget['filter'] = false; $widget['filter'] = false;
$widget['pagination'] = false; $widget['pagination'] = false;
if (!empty($conferences['records'])) { if (!empty($conferences['records'])) {
$widget['full'] = true; $widget['full'] = true;
$widget['table_headers'] = array_keys($conferences['records'][0]); $widget['table_headers'] = array_keys($conferences['records'][0]);
$widget['table_records'] = $conferences['records']; $widget['table_records'] = $conferences['records'];
} }
// display the widget // display the widget
include '../app/templates/widget.php'; include '../app/templates/widget.php';
} }