-
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
1 parent
843d680
commit 5a2652f
Showing
85 changed files
with
18,748 additions
and
2,599 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
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,2 @@ | ||
ALTER TABLE `room_booking`.`rooms` | ||
ADD COLUMN `minimum_slot` INT(11) NULL DEFAULT 30 COMMENT '' AFTER `requires_moderation`; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,14 +38,11 @@ define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b'); | |
|
||
define('USER_AGENT', 'LibraryBooking/1.0'); | ||
|
||
define('SITE_TITLE', 'Name goes here'); | ||
define('SITE_LOGO', 'https://domain.com/assets/images/logo.png'); | ||
|
||
//Defaults if user has no roles | ||
define('DEFAULT_TEMPLATE', 'rula_template'); | ||
define('DEFAULT_POLICY_URL', 'https://domain.com/room-booking-policy/'); | ||
|
||
define('DEBUG_MODE', FALSE); | ||
define('SITE_ADMIN', '[email protected]'); | ||
define('REPLY_EMAIL', '[email protected]'); //Used as the "FROM" address when sending emails | ||
define('CONTACT_EMAIL', '[email protected]'); | ||
|
@@ -80,6 +77,7 @@ define('TIME_DELAY', 0); //No delay | |
define('SEND_MODERATION_ACTION_EMAIL', TRUE); | ||
define('SEND_MODERATION_REQUEST_CONFIRMATION_EMAIL', TRUE); | ||
|
||
define('IMAGE_DIR', 'uploads'); | ||
|
||
/* End of file constants.php */ | ||
/* Location: ./application/config/constants.php */ |
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,84 @@ | ||
.detail_label{ | ||
display: inline-block; | ||
min-width: 160px; | ||
width: 200px; | ||
|
||
padding: 0.4em 0; | ||
font-weight: bold; | ||
float: left; | ||
} | ||
|
||
.detail{ | ||
float: left; | ||
} | ||
|
||
.footer { | ||
color: #333333; | ||
font-family: Arial,Verdana,Geneva,sans-serif; | ||
font-size: 9pt; | ||
margin: 0 auto; | ||
text-align: center; | ||
} | ||
|
||
.alert-danger .ui-bar{ | ||
color: #a94442; | ||
background-color: #f2dede; | ||
border-color: #ebccd1; | ||
} | ||
|
||
.alert-danger .ui-body{ | ||
background-color: #FFF8F8; | ||
} | ||
|
||
.alert-warning .ui-bar{ | ||
background-color: #fcf8e3; | ||
border-color: #faebcc; | ||
color: #8a6d3b; | ||
} | ||
|
||
.alert-warning .ui-body{ | ||
background-color: #FFFFFD; | ||
} | ||
|
||
.alert-success .ui-bar{ | ||
background-color: #dff0d8; | ||
border-color: #d6e9c6; | ||
color: #3c763d; | ||
} | ||
|
||
.alert-success .ui-body{ | ||
background-color: #F9FFF2; | ||
} | ||
|
||
.custom-corners .ui-bar { | ||
border-top-left-radius: 5px; | ||
border-top-right-radius: 7px; | ||
} | ||
|
||
.select_label{ | ||
line-height: 3em; | ||
} | ||
|
||
.text_area_height{ | ||
height: auto !important; | ||
} | ||
|
||
|
||
@media only screen and (max-width: 500px) { | ||
.detail{ | ||
display: block; | ||
float: none; | ||
padding-bottom: 0.6em; | ||
} | ||
|
||
.detail_label{ | ||
display: block; | ||
float: none; | ||
width: auto; | ||
min-width: 0; | ||
} | ||
|
||
.select_label{ | ||
line-height: normal; | ||
} | ||
} |
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,84 @@ | ||
.detail_label{ | ||
display: inline-block; | ||
min-width: 160px; | ||
width: 200px; | ||
|
||
padding: 0.4em 0; | ||
font-weight: bold; | ||
float: left; | ||
} | ||
|
||
.detail{ | ||
float: left; | ||
} | ||
|
||
.footer { | ||
color: #333333; | ||
font-family: Arial,Verdana,Geneva,sans-serif; | ||
font-size: 9pt; | ||
margin: 0 auto; | ||
text-align: center; | ||
} | ||
|
||
.alert-danger .ui-bar{ | ||
color: #a94442; | ||
background-color: #f2dede; | ||
border-color: #ebccd1; | ||
} | ||
|
||
.alert-danger .ui-body{ | ||
background-color: #FFF8F8; | ||
} | ||
|
||
.alert-warning .ui-bar{ | ||
background-color: #fcf8e3; | ||
border-color: #faebcc; | ||
color: #8a6d3b; | ||
} | ||
|
||
.alert-warning .ui-body{ | ||
background-color: #FFFFFD; | ||
} | ||
|
||
.alert-success .ui-bar{ | ||
background-color: #dff0d8; | ||
border-color: #d6e9c6; | ||
color: #3c763d; | ||
} | ||
|
||
.alert-success .ui-body{ | ||
background-color: #F9FFF2; | ||
} | ||
|
||
.custom-corners .ui-bar { | ||
border-top-left-radius: 5px; | ||
border-top-right-radius: 7px; | ||
} | ||
|
||
.select_label{ | ||
line-height: 3em; | ||
} | ||
|
||
.text_area_height{ | ||
height: auto !important; | ||
} | ||
|
||
|
||
@media only screen and (max-width: 500px) { | ||
.detail{ | ||
display: block; | ||
float: none; | ||
padding-bottom: 0.6em; | ||
} | ||
|
||
.detail_label{ | ||
display: block; | ||
float: none; | ||
width: auto; | ||
min-width: 0; | ||
} | ||
|
||
.select_label{ | ||
line-height: normal; | ||
} | ||
} |
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,84 @@ | ||
.detail_label{ | ||
display: inline-block; | ||
min-width: 160px; | ||
width: 200px; | ||
|
||
padding: 0.4em 0; | ||
font-weight: bold; | ||
float: left; | ||
} | ||
|
||
.detail{ | ||
float: left; | ||
} | ||
|
||
.footer { | ||
color: #333333; | ||
font-family: Arial,Verdana,Geneva,sans-serif; | ||
font-size: 9pt; | ||
margin: 0 auto; | ||
text-align: center; | ||
} | ||
|
||
.alert-danger .ui-bar{ | ||
color: #a94442; | ||
background-color: #f2dede; | ||
border-color: #ebccd1; | ||
} | ||
|
||
.alert-danger .ui-body{ | ||
background-color: #FFF8F8; | ||
} | ||
|
||
.alert-warning .ui-bar{ | ||
background-color: #fcf8e3; | ||
border-color: #faebcc; | ||
color: #8a6d3b; | ||
} | ||
|
||
.alert-warning .ui-body{ | ||
background-color: #FFFFFD; | ||
} | ||
|
||
.alert-success .ui-bar{ | ||
background-color: #dff0d8; | ||
border-color: #d6e9c6; | ||
color: #3c763d; | ||
} | ||
|
||
.alert-success .ui-body{ | ||
background-color: #F9FFF2; | ||
} | ||
|
||
.custom-corners .ui-bar { | ||
border-top-left-radius: 5px; | ||
border-top-right-radius: 7px; | ||
} | ||
|
||
.select_label{ | ||
line-height: 3em; | ||
} | ||
|
||
.text_area_height{ | ||
height: auto !important; | ||
} | ||
|
||
|
||
@media only screen and (max-width: 500px) { | ||
.detail{ | ||
display: block; | ||
float: none; | ||
padding-bottom: 0.6em; | ||
} | ||
|
||
.detail_label{ | ||
display: block; | ||
float: none; | ||
width: auto; | ||
min-width: 0; | ||
} | ||
|
||
.select_label{ | ||
line-height: normal; | ||
} | ||
} |
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,84 @@ | ||
.detail_label{ | ||
display: inline-block; | ||
min-width: 160px; | ||
width: 200px; | ||
|
||
padding: 0.4em 0; | ||
font-weight: bold; | ||
float: left; | ||
} | ||
|
||
.detail{ | ||
float: left; | ||
} | ||
|
||
.footer { | ||
color: #333333; | ||
font-family: Arial,Verdana,Geneva,sans-serif; | ||
font-size: 9pt; | ||
margin: 0 auto; | ||
text-align: center; | ||
} | ||
|
||
.alert-danger .ui-bar{ | ||
color: #a94442; | ||
background-color: #f2dede; | ||
border-color: #ebccd1; | ||
} | ||
|
||
.alert-danger .ui-body{ | ||
background-color: #FFF8F8; | ||
} | ||
|
||
.alert-warning .ui-bar{ | ||
background-color: #fcf8e3; | ||
border-color: #faebcc; | ||
color: #8a6d3b; | ||
} | ||
|
||
.alert-warning .ui-body{ | ||
background-color: #FFFFFD; | ||
} | ||
|
||
.alert-success .ui-bar{ | ||
background-color: #dff0d8; | ||
border-color: #d6e9c6; | ||
color: #3c763d; | ||
} | ||
|
||
.alert-success .ui-body{ | ||
background-color: #F9FFF2; | ||
} | ||
|
||
.custom-corners .ui-bar { | ||
border-top-left-radius: 5px; | ||
border-top-right-radius: 7px; | ||
} | ||
|
||
.select_label{ | ||
line-height: 3em; | ||
} | ||
|
||
.text_area_height{ | ||
height: auto !important; | ||
} | ||
|
||
|
||
@media only screen and (max-width: 500px) { | ||
.detail{ | ||
display: block; | ||
float: none; | ||
padding-bottom: 0.6em; | ||
} | ||
|
||
.detail_label{ | ||
display: block; | ||
float: none; | ||
width: auto; | ||
min-width: 0; | ||
} | ||
|
||
.select_label{ | ||
line-height: normal; | ||
} | ||
} |
Oops, something went wrong.