-
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.
Removed hardcoded references to Ryerson
- Loading branch information
1 parent
4528c65
commit f68313d
Showing
11 changed files
with
29 additions
and
18 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 |
---|---|---|
|
@@ -39,11 +39,17 @@ define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b'); | |
define('USER_AGENT', 'LibraryBooking/1.0'); | ||
|
||
define('SITE_TITLE', 'Name goes here'); | ||
define('SITE_LOGO', 'https://ryersonperformance.ca/sites/default/files/schoolofperformancebrandmark-centrewhite.png'); | ||
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]'); | ||
define('CONTACT_PHONE' '416-555-5555'); | ||
|
||
define('USE_EXTERNAL_HOURS', FALSE); | ||
define('EXTERNAL_HOURS_URL', 'https://domain.com/hours_external.cfm'); | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
<html lang="en-US"> | ||
<!--<![endif]--> | ||
<head> | ||
<title>Room Booking - Ryerson University Library and Archives</title> | ||
<title><?php echo SITE_TITLE; ?></title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | ||
|
@@ -45,8 +45,8 @@ | |
|
||
<div class="footer"> | ||
<a rel="external" href="<?php echo base_url(); ?>booking">Full Site</a> | | ||
<a href="mailto:[email protected]">[email protected]</a> | | ||
<a href="tel:416-979-5055">416-979-5055</a> | ||
<a href="mailto:<?php echo CONTACT_EMAIL; ?>"><?php echo CONTACT_EMAIL; ?></a> | | ||
<a href="tel:<?php echo CONTACT_PHONE; ?>"><?php echo CONTACT_PHONE; ?></a> | ||
</div> | ||
|
||
<script> | ||
|