Refactor project structure
This commit is contained in:
33
core/include.common.php
Normal file
33
core/include.common.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
ini_set('display_errors', false);
|
||||
error_reporting(E_ERROR);
|
||||
require dirname(__FILE__).'/lib/composer/vendor/autoload.php';
|
||||
|
||||
//$whoops = new \Whoops\Run;
|
||||
//$whoops->pushHandler(new \Whoops\Handler\PlainTextHandler);
|
||||
//$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler());
|
||||
//$whoops->register();
|
||||
|
||||
function t($text)
|
||||
{
|
||||
return \Classes\LanguageManager::translateTnrText($text);
|
||||
}
|
||||
|
||||
if(!defined('TAGS_TO_PRESERVE')){define('TAGS_TO_PRESERVE','');}
|
||||
$jsVersion = defined('CACHE_VALUE')?CACHE_VALUE:"v".VERSION;
|
||||
$cssVersion = defined('CACHE_VALUE')?CACHE_VALUE:"v".VERSION;
|
||||
|
||||
if(!isset($_REQUEST['content']) || $_REQUEST['content'] != 'HTML'){
|
||||
$_REQUEST = \Utils\InputCleaner::cleanParameters($_REQUEST);
|
||||
$_GET = \Utils\InputCleaner::cleanParameters($_GET);
|
||||
$_POST = \Utils\InputCleaner::cleanParameters($_POST);
|
||||
}
|
||||
|
||||
date_default_timezone_set('Asia/Colombo');
|
||||
//Find timezone diff with GMT
|
||||
$dateTimeZoneColombo = new DateTimeZone("Asia/Colombo");
|
||||
$dateTimeColombo = new DateTime("now", $dateTimeZoneColombo);
|
||||
$dateTimeColomboStr = $dateTimeColombo->format("Y-m-d H:i:s");
|
||||
$dateTimeNow = date("Y-m-d H:i:s");
|
||||
|
||||
$diffHoursBetweenServerTimezoneWithGMT = (strtotime($dateTimeNow) - (strtotime($dateTimeColomboStr) - 5.5*60*60))/(60*60);
|
||||
Reference in New Issue
Block a user