@@ -7,6 +7,11 @@ |
||
7 | 7 | $this->connection = []; |
8 | 8 | $this->currentConnection = null; |
9 | 9 | } |
10 | + |
|
11 | + /** |
|
12 | + * @param string $_name |
|
13 | + * @param Connection|null $_connection |
|
14 | + */ |
|
10 | 15 | public function addConnection( $_name, $_connection ) { |
11 | 16 | $this->connection["$_name"] = $_connection; |
12 | 17 | $this->currentConnection = $_connection; |
@@ -7,42 +7,42 @@ |
||
7 | 7 | $this->connection = []; |
8 | 8 | $this->currentConnection = null; |
9 | 9 | } |
10 | - public function addConnection( $_name, $_connection ) { |
|
10 | + public function addConnection($_name, $_connection) { |
|
11 | 11 | $this->connection["$_name"] = $_connection; |
12 | 12 | $this->currentConnection = $_connection; |
13 | 13 | |
14 | 14 | foreach ($this->modules as &$module) |
15 | - if(isset($module->currentConnection)) |
|
15 | + if (isset($module->currentConnection)) |
|
16 | 16 | $module->addConnection($_name, $_connection); |
17 | 17 | } |
18 | - public function setConnection( $_name ) { |
|
18 | + public function setConnection($_name) { |
|
19 | 19 | $this->currentConnection = $this->connection["$_name"]; |
20 | 20 | } |
21 | - public function query( $_query ) { |
|
21 | + public function query($_query) { |
|
22 | 22 | $this->stdQuery($_query); |
23 | 23 | return true; |
24 | 24 | } |
25 | - public function queryInsert( $_query ) { |
|
25 | + public function queryInsert($_query) { |
|
26 | 26 | $temp = $this->stdQuery($_query); |
27 | 27 | return $this->currentConnection->database->lastInsertId(); |
28 | 28 | } |
29 | 29 | |
30 | - public function queryFetch( $_query ) { |
|
30 | + public function queryFetch($_query) { |
|
31 | 31 | $temp = $this->stdQuery($_query); |
32 | 32 | return $temp->fetchAll(PDO::FETCH_ASSOC); |
33 | 33 | } |
34 | 34 | |
35 | - public function queryArray( $_query ) { |
|
35 | + public function queryArray($_query) { |
|
36 | 36 | $temp = $this->stdQuery($_query); |
37 | 37 | return $temp->fetchAll(PDO::FETCH_COLUMN, 0); |
38 | 38 | } |
39 | 39 | |
40 | - protected function stdQuery( $_query ) { |
|
40 | + protected function stdQuery($_query) { |
|
41 | 41 | $database = $this->currentConnection->database; |
42 | 42 | $error = "Error query [$_query]"; |
43 | 43 | $query = $database->prepare($_query); |
44 | 44 | $_result = $query->execute(); |
45 | - if(!$_result) { |
|
45 | + if (!$_result) { |
|
46 | 46 | echo "$_query<br>"; |
47 | 47 | echo "Something wrong: $error"; |
48 | 48 | var_dump($query->errorInfo()); |
@@ -11,9 +11,10 @@ |
||
11 | 11 | $this->connection["$_name"] = $_connection; |
12 | 12 | $this->currentConnection = $_connection; |
13 | 13 | |
14 | - foreach ($this->modules as &$module) |
|
15 | - if(isset($module->currentConnection)) |
|
14 | + foreach ($this->modules as &$module) { |
|
15 | + if(isset($module->currentConnection)) |
|
16 | 16 | $module->addConnection($_name, $_connection); |
17 | + } |
|
17 | 18 | } |
18 | 19 | public function setConnection( $_name ) { |
19 | 20 | $this->currentConnection = $this->connection["$_name"]; |
@@ -9,13 +9,13 @@ discard block |
||
9 | 9 | $temp = []; |
10 | 10 | foreach ($menu as $i) { |
11 | 11 | $submenu = []; |
12 | - if($i["fk_menu"] == 0) { |
|
12 | + if ($i["fk_menu"] == 0) { |
|
13 | 13 | $pk_menu = $i["pk_menu"]; |
14 | 14 | array_push($temp, array("label" => $i["label"], "link" => $i["link"], "submenu" => [])); |
15 | 15 | $submenu = $this->queryFetch("SELECT * FROM menu WHERE fk_menu = $pk_menu ORDER BY `order`"); |
16 | - if($submenu) |
|
16 | + if ($submenu) |
|
17 | 17 | foreach ($submenu as $j) |
18 | - array_push( $temp[count($temp)-1]["submenu"], array("label" => $j["label"], "link" => $j["link"], []) ); |
|
18 | + array_push($temp[count($temp) - 1]["submenu"], array("label" => $j["label"], "link" => $j["link"], [])); |
|
19 | 19 | } |
20 | 20 | } |
21 | 21 | $this->data["menu"] = $temp; |
@@ -25,8 +25,8 @@ discard block |
||
25 | 25 | $temp = ""; |
26 | 26 | $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; |
27 | 27 | foreach ($this->data["menu"] as $i) { |
28 | - $active = $this->isSubString($actual_link,array_merge(array_column($i["submenu"], 'link'), array($i["link"])))? "active" : ""; |
|
29 | - if( is_array($i["submenu"]) && count($i["submenu"])<1) |
|
28 | + $active = $this->isSubString($actual_link, array_merge(array_column($i["submenu"], 'link'), array($i["link"]))) ? "active" : ""; |
|
29 | + if (is_array($i["submenu"]) && count($i["submenu"]) < 1) |
|
30 | 30 | $temp .= "<li class='$active'><a href='".$i["link"]."'>".$i["label"]."</a></li>"; |
31 | 31 | else { |
32 | 32 | $temp .= "<li class='dropdown $active'>"; |
@@ -43,10 +43,10 @@ discard block |
||
43 | 43 | } |
44 | 44 | return $temp; |
45 | 45 | } |
46 | - protected function isSubString( $_string, $_list) { |
|
46 | + protected function isSubString($_string, $_list) { |
|
47 | 47 | $success = false; |
48 | 48 | foreach ($_list as $i) |
49 | - if(strpos($_string,$i) !== false) |
|
49 | + if (strpos($_string, $i) !== false) |
|
50 | 50 | $success = true; |
51 | 51 | return $success; |
52 | 52 | } |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | $this->init(); |
55 | 55 | $temp = []; |
56 | 56 | $user = ""; |
57 | - if(!isset($_SESSION["username"])) |
|
58 | - $_SESSION["username"] ="guest"; |
|
57 | + if (!isset($_SESSION["username"])) |
|
58 | + $_SESSION["username"] = "guest"; |
|
59 | 59 | $user = $_SESSION["username"]; |
60 | 60 | $blackList = $this->queryFetch( |
61 | 61 | "SELECT user.*,user_section.* |
@@ -70,10 +70,10 @@ discard block |
||
70 | 70 | $success = true; |
71 | 71 | $k = $i["label"]; |
72 | 72 | foreach ($blackList as $j) |
73 | - if( $j["section"] == $k) |
|
73 | + if ($j["section"] == $k) |
|
74 | 74 | $success = false; |
75 | - if($success) |
|
76 | - array_push($temp,$i); |
|
75 | + if ($success) |
|
76 | + array_push($temp, $i); |
|
77 | 77 | } |
78 | 78 | $this->data["menu"] = $temp; |
79 | 79 | } |
@@ -13,9 +13,10 @@ discard block |
||
13 | 13 | $pk_menu = $i["pk_menu"]; |
14 | 14 | array_push($temp, array("label" => $i["label"], "link" => $i["link"], "submenu" => [])); |
15 | 15 | $submenu = $this->queryFetch("SELECT * FROM menu WHERE fk_menu = $pk_menu ORDER BY `order`"); |
16 | - if($submenu) |
|
17 | - foreach ($submenu as $j) |
|
16 | + if($submenu) { |
|
17 | + foreach ($submenu as $j) |
|
18 | 18 | array_push( $temp[count($temp)-1]["submenu"], array("label" => $j["label"], "link" => $j["link"], []) ); |
19 | + } |
|
19 | 20 | } |
20 | 21 | } |
21 | 22 | $this->tags["menu"] = $temp; |
@@ -26,9 +27,9 @@ discard block |
||
26 | 27 | $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; |
27 | 28 | foreach ($this->tags["menu"] as $i) { |
28 | 29 | $active = $this->isSubString($actual_link,array_merge(array_column($i["submenu"], 'link'), array($i["link"])))? "active" : ""; |
29 | - if( is_array($i["submenu"]) && count($i["submenu"])<1) |
|
30 | - $temp .= "<li class='$active'><a href='$i[link]'>$i[label]</a></li>"; |
|
31 | - else { |
|
30 | + if( is_array($i["submenu"]) && count($i["submenu"])<1) { |
|
31 | + $temp .= "<li class='$active'><a href='$i[link]'>$i[label]</a></li>"; |
|
32 | + } else { |
|
32 | 33 | $temp .= "<li class='dropdown $active'>"; |
33 | 34 | $temp .= |
34 | 35 | '<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">'. |
@@ -36,8 +37,9 @@ discard block |
||
36 | 37 | '<span class="caret"></span>'. |
37 | 38 | '</a>'. |
38 | 39 | '<ul class="dropdown-menu">'; |
39 | - foreach ($i["submenu"] as $j) |
|
40 | - $temp .= "<li><a href='$j[link]'>$j[label]</a></li>"; |
|
40 | + foreach ($i["submenu"] as $j) { |
|
41 | + $temp .= "<li><a href='$j[link]'>$j[label]</a></li>"; |
|
42 | + } |
|
41 | 43 | $temp .= "</ul></li>"; |
42 | 44 | } |
43 | 45 | } |
@@ -45,17 +47,19 @@ discard block |
||
45 | 47 | } |
46 | 48 | protected function isSubString( $_string, $_list) { |
47 | 49 | $success = false; |
48 | - foreach ($_list as $i) |
|
49 | - if(strpos($_string,$i) !== false) |
|
50 | + foreach ($_list as $i) { |
|
51 | + if(strpos($_string,$i) !== false) |
|
50 | 52 | $success = true; |
53 | + } |
|
51 | 54 | return $success; |
52 | 55 | } |
53 | 56 | public function loginWithUser() { |
54 | 57 | $this->init(); |
55 | 58 | $temp = []; |
56 | 59 | $user = ""; |
57 | - if(!isset($_SESSION["username"])) |
|
58 | - $_SESSION["username"] ="guest"; |
|
60 | + if(!isset($_SESSION["username"])) { |
|
61 | + $_SESSION["username"] ="guest"; |
|
62 | + } |
|
59 | 63 | $user = $_SESSION["username"]; |
60 | 64 | $blackList = $this->queryFetch( |
61 | 65 | "SELECT user.*,user_section.* |
@@ -69,11 +73,13 @@ discard block |
||
69 | 73 | foreach ($this->tags["menu"] as $i) { |
70 | 74 | $success = true; |
71 | 75 | $k = $i["label"]; |
72 | - foreach ($blackList as $j) |
|
73 | - if( $j["section"] == $k) |
|
76 | + foreach ($blackList as $j) { |
|
77 | + if( $j["section"] == $k) |
|
74 | 78 | $success = false; |
75 | - if($success) |
|
76 | - array_push($temp,$i); |
|
79 | + } |
|
80 | + if($success) { |
|
81 | + array_push($temp,$i); |
|
82 | + } |
|
77 | 83 | } |
78 | 84 | $this->tags["menu"] = $temp; |
79 | 85 | } |
@@ -5,41 +5,41 @@ |
||
5 | 5 | public $DEBUG; |
6 | 6 | public $pages; |
7 | 7 | public function __construct() { |
8 | - $this->connection["enable"] = false; |
|
9 | - $this->connection["user"] = ""; |
|
8 | + $this->connection["enable"] = false; |
|
9 | + $this->connection["user"] = ""; |
|
10 | 10 | $this->connection["password"] = ""; |
11 | 11 | $this->connection["database"] = ""; |
12 | - $this->connection["server"] = ""; |
|
13 | - $this->all = ""; |
|
12 | + $this->connection["server"] = ""; |
|
13 | + $this->all = ""; |
|
14 | 14 | $this->DEBUG = 0; |
15 | 15 | $this->pages = []; |
16 | 16 | } |
17 | - public function import( $_path, $_type = "misc" ) { |
|
17 | + public function import($_path, $_type = "misc") { |
|
18 | 18 | $data = file_get_contents($_path); |
19 | 19 | $data = json_decode($data); |
20 | - if( $_type == "connection" ) |
|
20 | + if ($_type == "connection") |
|
21 | 21 | $this->overlayConnection($data); |
22 | 22 | else |
23 | 23 | $this->overlayMisc($data); |
24 | 24 | } |
25 | - protected function overlayConnection( $_data ) { |
|
25 | + protected function overlayConnection($_data) { |
|
26 | 26 | $this->connection = $this->obj2array($_data); |
27 | 27 | } |
28 | - protected function overlayMisc( $_data ) { |
|
28 | + protected function overlayMisc($_data) { |
|
29 | 29 | $this->importObject($_data); |
30 | 30 | } |
31 | - protected function obj2array ( &$_instance ) { |
|
32 | - $clone = (array) $_instance; |
|
31 | + protected function obj2array(&$_instance) { |
|
32 | + $clone = (array) $_instance; |
|
33 | 33 | $return = []; |
34 | 34 | $return['___SOURCE_KEYS_'] = $clone; |
35 | - while ( list ($key, $value) = each ($clone) ) { |
|
36 | - $temp = explode ("\0", $key); |
|
37 | - $newkey = $temp[count($temp)-1]; |
|
35 | + while (list ($key, $value) = each($clone)) { |
|
36 | + $temp = explode("\0", $key); |
|
37 | + $newkey = $temp[count($temp) - 1]; |
|
38 | 38 | $return[$newkey] = &$return['___SOURCE_KEYS_'][$key]; |
39 | 39 | } |
40 | 40 | return $return; |
41 | 41 | } |
42 | - protected function importObject( $_object ) { |
|
42 | + protected function importObject($_object) { |
|
43 | 43 | foreach (get_object_vars($_object) as $key => $value) |
44 | 44 | $this->$key = $value; |
45 | 45 | } |
@@ -17,10 +17,11 @@ discard block |
||
17 | 17 | public function import( $_path, $_type = "misc" ) { |
18 | 18 | $data = file_get_contents($_path); |
19 | 19 | $data = json_decode($data); |
20 | - if( $_type == "connection" ) |
|
21 | - $this->overlayConnection($data); |
|
22 | - else |
|
23 | - $this->overlayMisc($data); |
|
20 | + if( $_type == "connection" ) { |
|
21 | + $this->overlayConnection($data); |
|
22 | + } else { |
|
23 | + $this->overlayMisc($data); |
|
24 | + } |
|
24 | 25 | } |
25 | 26 | protected function overlayConnection( $_data ) { |
26 | 27 | $this->connection = $this->obj2array($_data); |
@@ -40,8 +41,9 @@ discard block |
||
40 | 41 | return $return; |
41 | 42 | } |
42 | 43 | protected function importObject( $_object ) { |
43 | - foreach (get_object_vars($_object) as $key => $value) |
|
44 | - $this->$key = $value; |
|
44 | + foreach (get_object_vars($_object) as $key => $value) { |
|
45 | + $this->$key = $value; |
|
46 | + } |
|
45 | 47 | } |
46 | 48 | } |
47 | 49 | ?> |
@@ -6,23 +6,23 @@ |
||
6 | 6 | require_once (end($GLOBALS["JATEPath"])."jate/functions/requirer.php"); |
7 | 7 | |
8 | 8 | //USER STUFF |
9 | - requireComponent ("modules/JConfig/JConfig.php"); |
|
10 | - $jConfig = new JConfig(); |
|
11 | - $jConfig->import("config/connection.json","connection"); |
|
9 | + requireComponent("modules/JConfig/JConfig.php"); |
|
10 | + $jConfig = new JConfig(); |
|
11 | + $jConfig->import("config/connection.json", "connection"); |
|
12 | 12 | $jConfig->import("config/misc.json"); |
13 | 13 | $jConfig->import("config/router.json"); |
14 | 14 | |
15 | 15 | //JATE STUFF |
16 | - requireComponent ("functions/folder.php"); |
|
16 | + requireComponent("functions/folder.php"); |
|
17 | 17 | |
18 | 18 | //JATE SUFF |
19 | - requireComponent ("modules/Module/Module.php"); |
|
20 | - requireComponents ("functions"); |
|
21 | - requireModules ("modules"); |
|
19 | + requireComponent("modules/Module/Module.php"); |
|
20 | + requireComponents("functions"); |
|
21 | + requireModules("modules"); |
|
22 | 22 | |
23 | 23 | //USER STUFF |
24 | - requireComponent ("config.php",false); |
|
25 | - requireModules ("modules",false); |
|
26 | - requireComponent ("pages/Template.php",false); |
|
27 | - requireComponents ("pages",false); |
|
24 | + requireComponent("config.php", false); |
|
25 | + requireModules("modules", false); |
|
26 | + requireComponent("pages/Template.php", false); |
|
27 | + requireComponents("pages", false); |
|
28 | 28 | ?> |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | - function getGitLog( $_dir = "./" ) { |
|
3 | - if(!file_exists($_dir)) |
|
2 | + function getGitLog($_dir = "./") { |
|
3 | + if (!file_exists($_dir)) |
|
4 | 4 | return []; |
5 | 5 | $currentDir = getcwd(); |
6 | 6 | chdir($_dir); |
7 | 7 | $gitHistory = []; |
8 | 8 | $gitLogs = []; |
9 | 9 | $gitPath = str_replace('\\', '/', exec("git rev-parse --show-toplevel")); |
10 | - $rootPath = str_replace('\\', '/', getcwd ()); |
|
10 | + $rootPath = str_replace('\\', '/', getcwd()); |
|
11 | 11 | $lastHash = null; |
12 | - if( $gitPath != $rootPath ) { |
|
12 | + if ($gitPath != $rootPath) { |
|
13 | 13 | chdir($currentDir); |
14 | 14 | return []; |
15 | 15 | } |
@@ -1,7 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | function getGitLog( $_dir = "./" ) { |
3 | - if(!file_exists($_dir)) |
|
4 | - return []; |
|
3 | + if(!file_exists($_dir)) { |
|
4 | + return []; |
|
5 | + } |
|
5 | 6 | $currentDir = getcwd(); |
6 | 7 | chdir($_dir); |
7 | 8 | $gitHistory = []; |
@@ -35,19 +36,17 @@ discard block |
||
35 | 36 | $tag = trim($tag[0]); |
36 | 37 | $gitHistory[$lastHash]['tag'] = $tag; |
37 | 38 | } |
38 | - } |
|
39 | - else if (strpos($line, 'Author') === 0) { |
|
39 | + } else if (strpos($line, 'Author') === 0) { |
|
40 | 40 | $author = explode(':', $line); |
41 | 41 | $author = trim(end($author)); |
42 | 42 | $gitHistory[$lastHash]['author'] = $author; |
43 | - } |
|
44 | - else if (strpos($line, 'Date') === 0) { |
|
43 | + } else if (strpos($line, 'Date') === 0) { |
|
45 | 44 | $date = explode(':', $line, 2); |
46 | 45 | $date = trim(end($date)); |
47 | 46 | $gitHistory[$lastHash]['date'] = date('d/m/Y H:i:s A', strtotime($date)); |
47 | + } else { |
|
48 | + $gitHistory[$lastHash]['message'] .= "$line<br>"; |
|
48 | 49 | } |
49 | - else |
|
50 | - $gitHistory[$lastHash]['message'] .= "$line<br>"; |
|
51 | 50 | } |
52 | 51 | } |
53 | 52 | chdir($currentDir); |
@@ -8,23 +8,23 @@ |
||
8 | 8 | $this->tags["brandImg"] = ""; |
9 | 9 | $this->tags["menu"] = ""; |
10 | 10 | $this->tags["title"] = ""; |
11 | - $this->tags["subtitle"] = ""; |
|
11 | + $this->tags["subtitle"] = ""; |
|
12 | 12 | $this->tags["content"] = ""; |
13 | - $this->tags["outContent"] = ""; |
|
13 | + $this->tags["outContent"] = ""; |
|
14 | 14 | $this->tags["footer"] = ""; |
15 | 15 | $this->tags["pagePath"] = []; |
16 | - $this->tags["css"] = []; |
|
17 | - $this->tags["js"] = []; |
|
16 | + $this->tags["css"] = []; |
|
17 | + $this->tags["js"] = []; |
|
18 | 18 | $this->tags["jsVariables"] = []; |
19 | - $this->tags["metaDescription"] = []; |
|
20 | - $this->tags["metaKeywords"] = []; |
|
19 | + $this->tags["metaDescription"] = []; |
|
20 | + $this->tags["metaKeywords"] = []; |
|
21 | 21 | $this->tags["metaAuthor"] = []; |
22 | 22 | } |
23 | 23 | public function uniforma() { |
24 | 24 | $this->addDipendences(); |
25 | 25 | $this->tags["css"] = array_unique($this->tags["css"]); |
26 | 26 | $this->tags["js"] = array_unique($this->tags["js"]); |
27 | - $this->tags["pagePath"] = json_encode($this->tags["pagePath"]); |
|
27 | + $this->tags["pagePath"] = json_encode($this->tags["pagePath"]); |
|
28 | 28 | $tempStr = ""; |
29 | 29 | foreach ($this->tags["css"] as $i) |
30 | 30 | $tempStr .= "<link rel='stylesheet' href='$i'>"; |
@@ -26,17 +26,20 @@ |
||
26 | 26 | $this->tags["js"] = array_unique($this->tags["js"]); |
27 | 27 | $this->tags["pagePath"] = json_encode($this->tags["pagePath"]); |
28 | 28 | $tempStr = ""; |
29 | - foreach ($this->tags["css"] as $i) |
|
30 | - $tempStr .= "<link rel='stylesheet' href='$i'>"; |
|
29 | + foreach ($this->tags["css"] as $i) { |
|
30 | + $tempStr .= "<link rel='stylesheet' href='$i'>"; |
|
31 | + } |
|
31 | 32 | $this->tags["css"] = $tempStr; |
32 | 33 | $tempStr = ""; |
33 | - foreach ($this->tags["js"] as $i) |
|
34 | - $tempStr .= "<script src='$i'></script>"; |
|
34 | + foreach ($this->tags["js"] as $i) { |
|
35 | + $tempStr .= "<script src='$i'></script>"; |
|
36 | + } |
|
35 | 37 | $this->tags["js"] = $tempStr; |
36 | 38 | $tempStr = ""; |
37 | 39 | $tempStr .= "<script type='text/javascript'>"; |
38 | - foreach ($this->tags["jsVariables"] as $i) |
|
39 | - $tempStr .= " $i[0] = $i[1];\n"; |
|
40 | + foreach ($this->tags["jsVariables"] as $i) { |
|
41 | + $tempStr .= " $i[0] = $i[1];\n"; |
|
42 | + } |
|
40 | 43 | $tempStr .= "</script>"; |
41 | 44 | $this->tags["jsVariables"] = $tempStr; |
42 | 45 | } |