Completed
Push — master ( c46095...7a2a91 )
by Federico
02:37
created
dist/jate/modules/Html/Html.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,32 +1,32 @@
 block discarded – undo
1 1
 <?php
2 2
 	requireComponent("../Query/Query.php");
3 3
 	class Html extends Query {
4
-		public function __construct( $_parameters = [ "app" => null, "page" => null] ) {
4
+		public function __construct($_parameters = ["app" => null, "page" => null]) {
5 5
 			parent::__construct();
6 6
 			$this->data["template"]					= "";
7 7
 			$this->tags["brand"]						= "";
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
-			$this->parameters								= $_parameters;
23
-			$this->tags["base"]							= $_parameters["app"]->server["RELATIVE"]."/";
22
+			$this->parameters = $_parameters;
23
+			$this->tags["base"] = $_parameters["app"]->server["RELATIVE"]."/";
24 24
 		}
25 25
 		public function uniforma() {
26 26
 			$this->addDipendences();
27 27
 			$this->tags["css"]			= array_unique($this->tags["css"]);
28 28
 			$this->tags["js"]				= array_unique($this->tags["js"]);
29
-			$this->tags["pagePath"]	= json_encode($this->tags["pagePath"]);
29
+			$this->tags["pagePath"] = json_encode($this->tags["pagePath"]);
30 30
 			$tempStr = "";
31 31
 			$timeParameter = "?t=".time();
32 32
 			$time = ($this->parameters["app"]->cache->css == true) ? "" : $timeParameter;
Please login to merge, or discard this patch.
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,18 +30,21 @@
 block discarded – undo
30 30
 			$tempStr = "";
31 31
 			$timeParameter = "?t=".time();
32 32
 			$time = ($this->parameters["app"]->cache->css == true) ? "" : $timeParameter;
33
-			foreach ($this->tags["css"] as $i)
34
-				$tempStr .= "<link rel='stylesheet' href='$i$time'>";
33
+			foreach ($this->tags["css"] as $i) {
34
+							$tempStr .= "<link rel='stylesheet' href='$i$time'>";
35
+			}
35 36
 			$this->tags["css"] = $tempStr;
36 37
 			$tempStr = "";
37 38
 			$time = ($this->parameters["app"]->cache->js == true) ? "" : $timeParameter;
38
-			foreach ($this->tags["js"] as $i)
39
-				$tempStr .= "<script src='$i$time'></script>";
39
+			foreach ($this->tags["js"] as $i) {
40
+							$tempStr .= "<script src='$i$time'></script>";
41
+			}
40 42
 			$this->tags["js"] = $tempStr;
41 43
 			$tempStr = "";
42 44
 			$tempStr .= "<script type='text/javascript'>";
43
-			foreach ($this->tags["jsVariables"] as $i)
44
-				$tempStr .= " $i[0] = $i[1];\n";
45
+			foreach ($this->tags["jsVariables"] as $i) {
46
+							$tempStr .= " $i[0] = $i[1];\n";
47
+			}
45 48
 			$tempStr .= "</script>";
46 49
 			$this->tags["jsVariables"] = $tempStr;
47 50
 		}
Please login to merge, or discard this patch.