@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | public function __construct($attribs = [], $template = null, $show = false) { |
28 | 28 | if (empty($template)) { |
29 | - $template = __DIR__ . self::DEFAULT_TEMPLATE; |
|
29 | + $template = __DIR__.self::DEFAULT_TEMPLATE; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | if ($show) { |
@@ -29,11 +29,11 @@ discard block |
||
29 | 29 | if ($encoding) { |
30 | 30 | $firstLetter = mb_substr(mb_strtoupper($str, $encoding), 0, 1, $encoding); |
31 | 31 | |
32 | - return ($firstLetter . mb_substr($str, 1, null, $encoding)); |
|
32 | + return ($firstLetter.mb_substr($str, 1, null, $encoding)); |
|
33 | 33 | } else { |
34 | 34 | $firstLetter = mb_substr(mb_strtoupper($str), 0, 1); |
35 | 35 | |
36 | - return ($firstLetter . mb_substr($str, 1)); |
|
36 | + return ($firstLetter.mb_substr($str, 1)); |
|
37 | 37 | } |
38 | 38 | } |
39 | 39 | |
@@ -52,11 +52,11 @@ discard block |
||
52 | 52 | if ($encoding) { |
53 | 53 | $firstLetter = mb_substr(mb_strtoupper($str, $encoding), 0, 1, $encoding); |
54 | 54 | |
55 | - return ($firstLetter . mb_substr($str, 1, null, $encoding)); |
|
55 | + return ($firstLetter.mb_substr($str, 1, null, $encoding)); |
|
56 | 56 | } else { |
57 | 57 | $firstLetter = mb_substr(mb_strtoupper($str), 0, 1); |
58 | 58 | |
59 | - return ($firstLetter . mb_substr($str, 1)); |
|
59 | + return ($firstLetter.mb_substr($str, 1)); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 |
@@ -64,7 +64,7 @@ |
||
64 | 64 | if (isset($this->titles[$code])) { |
65 | 65 | return $this->titles[$code]; |
66 | 66 | } else { |
67 | - throw new Exception("Invalid language code '" . $code . "'"); |
|
67 | + throw new Exception("Invalid language code '".$code."'"); |
|
68 | 68 | } |
69 | 69 | } |
70 | 70 |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | session_start(); |
4 | -header('X-Powered-By: Asymptix PHP Framework, PHP/' . phpversion()); |
|
4 | +header('X-Powered-By: Asymptix PHP Framework, PHP/'.phpversion()); |
|
5 | 5 | |
6 | 6 | require_once("modules/autoload.php"); |
7 | 7 | |
@@ -68,9 +68,9 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | if ($_ROUTE->isBackend) { |
71 | - require_once("controllers/backend/" . $_ROUTE->controller . ".php"); |
|
71 | + require_once("controllers/backend/".$_ROUTE->controller.".php"); |
|
72 | 72 | require_once("templates/backend/master.tpl.php"); |
73 | 73 | } else { |
74 | - require_once("controllers/frontend/" . $_ROUTE->controller . ".php"); |
|
74 | + require_once("controllers/frontend/".$_ROUTE->controller.".php"); |
|
75 | 75 | require_once("templates/frontend/master.tpl.php"); |
76 | 76 | } |
77 | 77 | \ No newline at end of file |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | OutputStream::start(); |
16 | 16 | |
17 | 17 | if (!file_exists(RESULTS_PATH) || is_file(RESULTS_PATH)) { |
18 | - OutputStream::msg(OutputStream::MSG_ERROR, "Destination directory '" . RESULTS_PATH . "' doesn't exists."); |
|
18 | + OutputStream::msg(OutputStream::MSG_ERROR, "Destination directory '".RESULTS_PATH."' doesn't exists."); |
|
19 | 19 | OutputStream::close(); |
20 | 20 | exit(); |
21 | 21 | } |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | if ($stmt !== false) { |
27 | 27 | $tpl = file_get_contents(CLASS_TPL); |
28 | 28 | while ($resultSet = DBCore::bindResults($stmt)) { |
29 | - $tableName = $resultSet['TABLE_NAMES']['Tables_in_' . conf\Config::getDBConfigParam('DBNAME')]; |
|
29 | + $tableName = $resultSet['TABLE_NAMES']['Tables_in_'.conf\Config::getDBConfigParam('DBNAME')]; |
|
30 | 30 | |
31 | - OutputStream::msg(OutputStream::MSG_INFO, "Reading structure for table '" . $tableName . "'..."); |
|
31 | + OutputStream::msg(OutputStream::MSG_INFO, "Reading structure for table '".$tableName."'..."); |
|
32 | 32 | |
33 | 33 | $idFieldName = 'id'; |
34 | 34 | $fieldsListStr = ""; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | if ($attributes['key'] === 'PRI') { |
39 | 39 | $idFieldName = $field; |
40 | 40 | } |
41 | - $fieldsListStr.= " " . DBCore::getPrintableFieldString($field, $attributes); |
|
41 | + $fieldsListStr .= " ".DBCore::getPrintableFieldString($field, $attributes); |
|
42 | 42 | } |
43 | 43 | $fieldsListStr = substr($fieldsListStr, 0, strlen($fieldsListStr) - 1); |
44 | 44 | |
@@ -52,11 +52,11 @@ discard block |
||
52 | 52 | date("Y"), AUTHOR, EMAIL |
53 | 53 | ), $tpl); |
54 | 54 | |
55 | - file_put_contents(RESULTS_PATH . $className . ".php", $content); |
|
55 | + file_put_contents(RESULTS_PATH.$className.".php", $content); |
|
56 | 56 | |
57 | - OutputStream::msg(OutputStream::MSG_SUCCESS, "Class '" . RESULTS_PATH . $className . ".php' generated."); |
|
57 | + OutputStream::msg(OutputStream::MSG_SUCCESS, "Class '".RESULTS_PATH.$className.".php' generated."); |
|
58 | 58 | } else { |
59 | - OutputStream::msg(OutputStream::MSG_ERROR, "Can't read structure for table '" . $tableName . "'."); |
|
59 | + OutputStream::msg(OutputStream::MSG_ERROR, "Can't read structure for table '".$tableName."'."); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | function getClassName($tableName) { |
70 | 70 | $underlinesReplaced = preg_replace_callback( |
71 | 71 | "/_([a-zA-Z]{1})/", |
72 | - function ($matches) { |
|
72 | + function($matches) { |
|
73 | 73 | return strtoupper($matches[1]); |
74 | 74 | }, |
75 | 75 | $tableName |
@@ -19,10 +19,10 @@ |
||
19 | 19 | Config::getDBConfigParam('USER'), Config::getDBConfigParam('PASSWORD'), |
20 | 20 | Config::getDBConfigParam('DBNAME')); |
21 | 21 | if ($mysqli->connect_error) { |
22 | - die('Connect Error (' . $mysqli->connect_errno . ') ' . $mysqli->connect_error); |
|
22 | + die('Connect Error ('.$mysqli->connect_errno.') '.$mysqli->connect_error); |
|
23 | 23 | } else { |
24 | 24 | if (!$mysqli->set_charset(Config::getDBConfigParam('DB_CHARSET'))) { |
25 | - printf("Error loading character set " . Config::getDBConfigParam('DB_CHARSET') . ": %s\n", $mysqli->error); |
|
25 | + printf("Error loading character set ".Config::getDBConfigParam('DB_CHARSET').": %s\n", $mysqli->error); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | $manager = DBCore::getInstance(); |
@@ -22,16 +22,16 @@ discard block |
||
22 | 22 | function http_redirect($url, $params = array(), $session = false) { |
23 | 23 | $paramsString = ""; |
24 | 24 | foreach ($params as $key => $value) { |
25 | - $paramsString .= "&" . $key . "=" . $value; |
|
25 | + $paramsString .= "&".$key."=".$value; |
|
26 | 26 | } |
27 | 27 | if ($session) { |
28 | - $paramsString .= "&" . session_name() . "=" . session_id(); |
|
28 | + $paramsString .= "&".session_name()."=".session_id(); |
|
29 | 29 | } |
30 | 30 | $paramsString = substr($paramsString, 1); |
31 | 31 | if ($paramsString) { |
32 | - $paramsString = "?" . $paramsString; |
|
32 | + $paramsString = "?".$paramsString; |
|
33 | 33 | } |
34 | - header("Location: " . $url . $paramsString); |
|
34 | + header("Location: ".$url.$paramsString); |
|
35 | 35 | exit(); |
36 | 36 | } |
37 | 37 | |
@@ -122,13 +122,13 @@ discard block |
||
122 | 122 | case 505: $text = 'HTTP Version not supported'; |
123 | 123 | break; |
124 | 124 | default: |
125 | - exit('Unknown http status code "' . htmlentities($code) . '"'); |
|
125 | + exit('Unknown http status code "'.htmlentities($code).'"'); |
|
126 | 126 | break; |
127 | 127 | } |
128 | 128 | |
129 | 129 | $protocol = (isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0'); |
130 | 130 | |
131 | - header($protocol . ' ' . $code . ' ' . $text); |
|
131 | + header($protocol.' '.$code.' '.$text); |
|
132 | 132 | |
133 | 133 | $GLOBALS['http_response_code'] = $code; |
134 | 134 | } else { |
@@ -13,19 +13,19 @@ |
||
13 | 13 | |
14 | 14 | $deepness = substr_count($_SERVER['SCRIPT_NAME'], "/") - 1; |
15 | 15 | |
16 | -$_PATH = $deepness>0 ? implode("", array_fill(0, $deepness, "../")) : "./"; |
|
16 | +$_PATH = $deepness > 0 ? implode("", array_fill(0, $deepness, "../")) : "./"; |
|
17 | 17 | |
18 | -require_once($_PATH . "vendor/autoload.php"); |
|
19 | -spl_autoload_register(function ($className) { |
|
18 | +require_once($_PATH."vendor/autoload.php"); |
|
19 | +spl_autoload_register(function($className) { |
|
20 | 20 | global $_PATH; |
21 | 21 | |
22 | 22 | $path = explode("\\", $className); |
23 | 23 | if (in_array($path[0], array("conf"))) { |
24 | - $includePath = $_PATH . str_replace("\\", "/", $className . ".php"); |
|
24 | + $includePath = $_PATH.str_replace("\\", "/", $className.".php"); |
|
25 | 25 | } else { |
26 | - $includePath = $_PATH . "classes/" . str_replace("\\", "/", $className . ".php"); |
|
26 | + $includePath = $_PATH."classes/".str_replace("\\", "/", $className.".php"); |
|
27 | 27 | } |
28 | 28 | require_once($includePath); |
29 | 29 | }); |
30 | 30 | |
31 | -require_once($_PATH . "modules/error_log.php"); |
|
32 | 31 | \ No newline at end of file |
32 | +require_once($_PATH."modules/error_log.php"); |
|
33 | 33 | \ No newline at end of file |
@@ -22,4 +22,4 @@ |
||
22 | 22 | $_LANG = Languages::getLanguage($_SESSION['lang']); |
23 | 23 | $_SESSION['lang'] = $_LANG->code; |
24 | 24 | |
25 | -require_once(realpath(dirname(__FILE__)) . "/../conf/langs/" . $_LANG->code . ".php"); |
|
26 | 25 | \ No newline at end of file |
26 | +require_once(realpath(dirname(__FILE__))."/../conf/langs/".$_LANG->code.".php"); |
|
27 | 27 | \ No newline at end of file |