forked from LibreBooking/app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
1,139 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,5 @@ | |
/custom/ | ||
/uploads/reservation | ||
/logs/* | ||
\#*\# | ||
.\#* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
/** | ||
Copyright 2021 Nestor Diaz | ||
This file is part of Booked Scheduler. | ||
Booked Scheduler is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Booked Scheduler is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Booked Scheduler. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
require_once(ROOT_DIR . 'Pages/Page.php'); | ||
|
||
class AdministrationPage extends Page | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('Administration'); | ||
} | ||
|
||
public function PageLoad() | ||
{ | ||
$this->Set('RemindersPath', realpath(ROOT_DIR . 'Jobs/sendreminders.php')); | ||
$this->Set('AutoReleasePath', realpath(ROOT_DIR . 'Jobs/autorelease.php')); | ||
$this->Set('WaitListPath', realpath(ROOT_DIR . 'Jobs/sendwaitlist.php')); | ||
$this->Set('MissedCheckinPath', realpath(ROOT_DIR . 'Jobs/sendmissedcheckin.php')); | ||
$this->Set('ServerTimezone', date_default_timezone_get()); | ||
|
||
$this->DisplayLocalized('administration.tpl'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
/** | ||
Copyright 2011-2020 Nick Korbel | ||
This file is part of Booked Scheduler. | ||
Booked Scheduler is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Booked Scheduler is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Booked Scheduler. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
require_once(ROOT_DIR . 'Pages/Page.php'); | ||
|
||
class UsagePage extends Page | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct('Usage'); | ||
} | ||
|
||
public function PageLoad() | ||
{ | ||
$this->Set('RemindersPath', realpath(ROOT_DIR . 'Jobs/sendreminders.php')); | ||
$this->Set('AutoReleasePath', realpath(ROOT_DIR . 'Jobs/autorelease.php')); | ||
$this->Set('WaitListPath', realpath(ROOT_DIR . 'Jobs/sendwaitlist.php')); | ||
$this->Set('MissedCheckinPath', realpath(ROOT_DIR . 'Jobs/sendmissedcheckin.php')); | ||
$this->Set('ServerTimezone', date_default_timezone_get()); | ||
|
||
$this->DisplayLocalized('usage.tpl'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
/** | ||
Copyright 2021 Nestor Diaz | ||
This file is part of Booked Scheduler. | ||
Booked Scheduler is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Booked Scheduler is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Booked Scheduler. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
define('ROOT_DIR', '../'); | ||
require_once(ROOT_DIR . 'Pages/AdministrationPage.php'); | ||
|
||
$page = new AdministrationPage(); | ||
$page->PageLoad(); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
/** | ||
Copyright 2021 Nestor Diaz | ||
This file is part of Booked Scheduler. | ||
Booked Scheduler is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Booked Scheduler is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Booked Scheduler. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
define('ROOT_DIR', '../'); | ||
require_once(ROOT_DIR . 'Pages/UsagePage.php'); | ||
|
||
$page = new UsagePage(); | ||
$page->PageLoad(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.