| 
									
										
										
										
											2017-04-24 17:13:08 -06:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Whether to show debugging data in output.
 | 
					
						
							|  |  |  | // DO NOT SET TO TRUE IN PRODUCTION!!!
 | 
					
						
							|  |  |  | define("DEBUG", false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Database connection settings
 | 
					
						
							|  |  |  | // See http://medoo.in/api/new for info
 | 
					
						
							|  |  |  | define("DB_TYPE", "mysql"); | 
					
						
							|  |  |  | define("DB_NAME", "app"); | 
					
						
							|  |  |  | define("DB_SERVER", "localhost"); | 
					
						
							|  |  |  | define("DB_USER", "app"); | 
					
						
							|  |  |  | define("DB_PASS", ""); | 
					
						
							|  |  |  | define("DB_CHARSET", "utf8"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-13 22:29:22 -06:00
										 |  |  | // Name of the app.
 | 
					
						
							| 
									
										
										
										
											2017-04-24 17:13:08 -06:00
										 |  |  | define("SITE_TITLE", "Web App Template"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 18:22:27 -06:00
										 |  |  | // Which pages to show the app icon on:
 | 
					
						
							|  |  |  | // index, app, both, none
 | 
					
						
							|  |  |  | define("SHOW_ICON", "both"); | 
					
						
							|  |  |  | // Where to put the icon: top or menu
 | 
					
						
							|  |  |  | // Overridden to 'menu' if MENU_BAR_STYLE is 'fixed'.
 | 
					
						
							|  |  |  | define("ICON_POSITION", "menu"); | 
					
						
							|  |  |  | // App menu bar style: fixed or static
 | 
					
						
							|  |  |  | define("MENU_BAR_STYLE", "fixed"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // URL of the Business Portal API endpoint
 | 
					
						
							| 
									
										
										
										
											2017-07-21 00:59:09 -06:00
										 |  |  | define("PORTAL_API", "http://localhost/accounthub/api.php"); | 
					
						
							| 
									
										
										
										
											2017-05-13 16:39:16 -06:00
										 |  |  | // URL of the Portal home page
 | 
					
						
							| 
									
										
										
										
											2017-07-21 00:59:09 -06:00
										 |  |  | define("PORTAL_URL", "http://localhost/accounthub/home.php"); | 
					
						
							| 
									
										
										
										
											2017-04-25 18:22:27 -06:00
										 |  |  | // Business Portal API Key
 | 
					
						
							|  |  |  | define("PORTAL_KEY", "123"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-24 17:13:08 -06:00
										 |  |  | // For supported values, see http://php.net/manual/en/timezones.php
 | 
					
						
							|  |  |  | define("TIMEZONE", "America/Denver"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Base URL for site links.
 | 
					
						
							| 
									
										
										
										
											2017-05-13 22:29:22 -06:00
										 |  |  | define('URL', 'http://localhost/app'); | 
					
						
							| 
									
										
										
										
											2017-04-24 17:13:08 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-02 19:17:59 -06:00
										 |  |  | // Use reCAPTCHA on login screen
 | 
					
						
							|  |  |  | // https://www.google.com/recaptcha/
 | 
					
						
							|  |  |  | define("RECAPTCHA_ENABLED", FALSE); | 
					
						
							|  |  |  | define('RECAPTCHA_SITE_KEY', ''); | 
					
						
							|  |  |  | define('RECAPTCHA_SECRET_KEY', ''); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-24 17:13:08 -06:00
										 |  |  | // See lang folder for language options
 | 
					
						
							|  |  |  | define('LANGUAGE', "en_us"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-16 13:48:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | define("FOOTER_TEXT", "<b>Free Software: MIT License</b>"); | 
					
						
							|  |  |  | define("COPYRIGHT_NAME", "Netsyms Technologies"); |