Completed
Push — master ( fc9cad...73aa8e )
by Jean-Christophe
07:56 queued 03:31
created
Ajax/ui/components/Accordion.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
 	public function __construct(JsUtils $js) {
18 18
 		parent::__construct($js);
19
-		$this->params=array (
19
+		$this->params=array(
20 20
 				"active" => 0
21 21
 		);
22 22
 		$this->uiName="accordion";
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 	 * @return $this
113 113
 	 */
114 114
 	public function setHeightStyle($value) {
115
-		return $this->setParamCtrl("heightStyle", $value, array (
115
+		return $this->setParamCtrl("heightStyle", $value, array(
116 116
 				"auto",
117 117
 				"fill",
118 118
 				"content"
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@
 block discarded – undo
49 49
 	 * @return $this
50 50
 	 */
51 51
 	public function setAnimate($value) {
52
-		if ($value instanceof Animation)
53
-			$value=$value->getParams();
54
-		else if (is_string($value)) {
52
+		if ($value instanceof Animation) {
53
+					$value=$value->getParams();
54
+		} else if (is_string($value)) {
55 55
 			$animation=new Animation();
56 56
 			$animation->setEasing($value);
57 57
 		}
Please login to merge, or discard this patch.
Ajax/ui/components/Autocomplete.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 	 * @return $this
53 53
 	 */
54 54
 	public function setSource($source) {
55
-		$source=str_ireplace(array (
55
+		$source=str_ireplace(array(
56 56
 				"\"",
57 57
 				"'" 
58 58
 		), "%quote%", $source);
Please login to merge, or discard this patch.
Ajax/ui/components/Progressbar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
 	public function __construct(JsUtils $js) {
16 16
 		parent::__construct($js);
17
-		$this->params=array (
17
+		$this->params=array(
18 18
 				"value" => 50 
19 19
 		);
20 20
 		$this->uiName="progressbar";
Please login to merge, or discard this patch.
Ajax/ui/components/DialogButton.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
 	private function addFunction($jsCode) {
18 18
 		if (!Text::startsWith($jsCode, "function"))
19
-			$jsCode="%function(){" . $jsCode . "}%";
19
+			$jsCode="%function(){".$jsCode."}%";
20 20
 		return $jsCode;
21 21
 	}
22 22
 
@@ -43,6 +43,6 @@  discard block
 block discarded – undo
43 43
 	}
44 44
 
45 45
 	public static function submitButton(JsUtils $js, $url, $form, $responseElement, $caption="Okay") {
46
-		return new DialogButton($caption, $js->postForm($url, $form, $responseElement) . ";$( this ).dialog( 'close' );");
46
+		return new DialogButton($caption, $js->postForm($url, $form, $responseElement).";$( this ).dialog( 'close' );");
47 47
 	}
48 48
 }
49 49
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,9 @@
 block discarded – undo
15 15
 class DialogButton extends BaseComponent {
16 16
 
17 17
 	private function addFunction($jsCode) {
18
-		if (!Text::startsWith($jsCode, "function"))
19
-			$jsCode="%function(){" . $jsCode . "}%";
18
+		if (!Text::startsWith($jsCode, "function")) {
19
+					$jsCode="%function(){" . $jsCode . "}%";
20
+		}
20 21
 		return $jsCode;
21 22
 	}
22 23
 
Please login to merge, or discard this patch.
Ajax/ui/components/Dialog.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@  discard block
 block discarded – undo
12 12
  */
13 13
 class Dialog extends SimpleComponent {
14 14
 	protected $attachTo;
15
-	protected $buttons=array ();
15
+	protected $buttons=array();
16 16
 
17 17
 	public function __construct(JsUtils $js) {
18 18
 		parent::__construct($js);
19
-		$this->params=array (
19
+		$this->params=array(
20 20
 				"dialogClass" => "no-close" 
21 21
 		);
22 22
 		$this->addCancelBtn("Annuler");
@@ -24,12 +24,12 @@  discard block
 block discarded – undo
24 24
 
25 25
 	public function getScript() {
26 26
 		$allParams=$this->params;
27
-		$jsonButtons=array ();
28
-		foreach ( $this->buttons as $button ) {
27
+		$jsonButtons=array();
28
+		foreach ($this->buttons as $button) {
29 29
 			$jsonButtons []=$button->getParams();
30 30
 		}
31 31
 		$allParams ["buttons"]=$jsonButtons;
32
-		$this->jquery_code_for_compile []="$( '" . $this->attachTo . "' ).dialog(" . $this->getParamsAsJSON($allParams) . ");";
32
+		$this->jquery_code_for_compile []="$( '".$this->attachTo."' ).dialog(".$this->getParamsAsJSON($allParams).");";
33 33
 		$result=implode("", $this->jquery_code_for_compile);
34 34
 		$result=str_ireplace("\"%", "", $result);
35 35
 		$result=str_ireplace("%\"", "", $result);
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	}
60 60
 
61 61
 	private function insertBtn($insert, $position=NULL) {
62
-		if ($position != NULL) {
62
+		if ($position!=NULL) {
63 63
 			$this->buttons=array_splice($this->buttons, $position, 0, $insert);
64 64
 		} else {
65 65
 			$this->buttons []=$insert;
Please login to merge, or discard this patch.
Ajax/config/DefaultConfig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 class DefaultConfig extends Config {
8 8
 
9 9
 	public function __construct() {
10
-		parent::__construct(array (
11
-				"formElementsPrefix" => array (
10
+		parent::__construct(array(
11
+				"formElementsPrefix" => array(
12 12
 						"txt" => "input_text",
13 13
 						"btn" => "button",
14 14
 						"ck" => "checkbox",
Please login to merge, or discard this patch.
Ajax/semantic/traits/SemanticComponentsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,8 +83,8 @@
 block discarded – undo
83 83
 		return $this->addComponent(new Dimmer($this->js), $attachTo, $params);
84 84
 	}
85 85
 
86
-	public function modal($attachTo=NULL, $params=NULL,$paramsParts=NULL) {
87
-		$result= $this->addComponent(new Modal($this->js), $attachTo, $params);
86
+	public function modal($attachTo=NULL, $params=NULL, $paramsParts=NULL) {
87
+		$result=$this->addComponent(new Modal($this->js), $attachTo, $params);
88 88
 		$result->setParamParts($paramsParts);
89 89
 		return $result;
90 90
 	}
Please login to merge, or discard this patch.
Ajax/semantic/traits/SemanticHtmlElementsTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -130,12 +130,12 @@
 block discarded – undo
130 130
 	 * @param string $tagName
131 131
 	 * @return HtmlLabel
132 132
 	 */
133
-	public function htmlLabel($identifier, $content="", $icon=NULL,$tagName="div") {
134
-		return $this->addHtmlComponent(new HtmlLabel($identifier, $content,$icon, $tagName));
133
+	public function htmlLabel($identifier, $content="", $icon=NULL, $tagName="div") {
134
+		return $this->addHtmlComponent(new HtmlLabel($identifier, $content, $icon, $tagName));
135 135
 	}
136 136
 
137
-	public function htmlLabelGroups($identifier,$labels=array(),$attributes=array()){
138
-		return $this->addHtmlComponent(new HtmlLabelGroups($identifier,$labels,$attributes));
137
+	public function htmlLabelGroups($identifier, $labels=array(), $attributes=array()) {
138
+		return $this->addHtmlComponent(new HtmlLabelGroups($identifier, $labels, $attributes));
139 139
 	}
140 140
 
141 141
 	/**
Please login to merge, or discard this patch.
Ajax/semantic/traits/SemanticHtmlCollectionsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 	 * @param int $rowCount
14 14
 	 * @param int $colCount
15 15
 	 */
16
-	public function htmlTable($identifier, $rowCount, $colCount){
16
+	public function htmlTable($identifier, $rowCount, $colCount) {
17 17
 		return $this->addHtmlComponent(new HtmlTable($identifier, $rowCount, $colCount));
18 18
 	}
19 19
 }
20 20
\ No newline at end of file
Please login to merge, or discard this patch.