Passed
Push — master ( b5e440...2aba7e )
by Jean-Christophe
03:06
created
Ajax/semantic/html/base/traits/LabeledIconTrait.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 trait LabeledIconTrait {
14 14
 
15 15
 	abstract public function addToProperty($name, $value, $separator=" ");
16
-	abstract public function addContent($content,$before=false);
16
+	abstract public function addContent($content, $before=false);
17 17
 
18 18
 	/**
19 19
 	 * Adds an icon before or after
@@ -22,17 +22,17 @@  discard block
 block discarded – undo
22 22
 	 * @param boolean $labeled
23 23
 	 * @return \Ajax\semantic\html\elements\HtmlIcon
24 24
 	 */
25
-	public function addIcon($icon,$before=true,$labeled=false){
25
+	public function addIcon($icon, $before=true, $labeled=false) {
26 26
 		$iconO=$icon;
27
-		if(\is_string($icon)){
27
+		if (\is_string($icon)) {
28 28
 			$iconO=new HtmlIcon("icon-".$this->identifier, $icon);
29 29
 		}
30
-		if($labeled!==false){
31
-			$direction=($before===true)?Direction::LEFT:Direction::RIGHT;
30
+		if ($labeled!==false) {
31
+			$direction=($before===true) ?Direction::LEFT : Direction::RIGHT;
32 32
 			$this->addToProperty("class", $direction." labeled icon");
33 33
 			$this->tagName="div";
34 34
 		}
35
-		$this->addContent($iconO,$before);
35
+		$this->addContent($iconO, $before);
36 36
 		return $iconO;
37 37
 	}
38 38
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/modules/HtmlPopup.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 class HtmlPopup extends HtmlSemDoubleElement {
13 13
 	private $_container;
14
-	public function __construct(BaseHtml $container,$identifier, $content="") {
14
+	public function __construct(BaseHtml $container, $identifier, $content="") {
15 15
 		parent::__construct($identifier, "div");
16 16
 		$this->_container=$container;
17 17
 		$this->setClass("ui popup");
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
 	 * {@inheritDoc}
24 24
 	 * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::addList()
25 25
 	 */
26
-	public function addList($items=array(),$header=NULL){
27
-		if(!$this->content instanceof HtmlGrid){
28
-			$this->content=new HtmlGrid("Grid-".$this->identifier,0);
26
+	public function addList($items=array(), $header=NULL) {
27
+		if (!$this->content instanceof HtmlGrid) {
28
+			$this->content=new HtmlGrid("Grid-".$this->identifier, 0);
29 29
 		}
30 30
 		$grid=$this->content;
31 31
 
@@ -33,12 +33,12 @@  discard block
 block discarded – undo
33 33
 		$colCount++;
34 34
 		$grid->setColsCount($colCount);
35 35
 
36
-		$list=new HtmlList("",$items);
36
+		$list=new HtmlList("", $items);
37 37
 		$list->asLink();
38
-		if(isset($header)){
39
-			$list->addHeader(4,$header);
38
+		if (isset($header)) {
39
+			$list->addHeader(4, $header);
40 40
 		}
41
-		$grid->getCell(0,$colCount-1)->setContent($list);
41
+		$grid->getCell(0, $colCount-1)->setContent($list);
42 42
 		$grid->setDivided()->setRelaxed(true);
43 43
 		return $list;
44 44
 	}
@@ -46,14 +46,14 @@  discard block
 block discarded – undo
46 46
 	/**
47 47
 	 * A popup can have no maximum width and continue to flow to fit its content
48 48
 	 */
49
-	public function setFlowing(){
49
+	public function setFlowing() {
50 50
 		return $this->addToProperty("class", "flowing");
51 51
 	}
52 52
 
53 53
 	/**
54 54
 	 * A popup can provide more basic formatting
55 55
 	 */
56
-	public function setBasic(){
56
+	public function setBasic() {
57 57
 		return $this->addToProperty("class", "basic");
58 58
 	}
59 59
 
@@ -61,23 +61,23 @@  discard block
 block discarded – undo
61 61
 	 * {@inheritDoc}
62 62
 	 * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run()
63 63
 	 */
64
-	public function run(JsUtils $js){
64
+	public function run(JsUtils $js) {
65 65
 		parent::run($js);
66 66
 		$this->_params["popup"]="#".$this->identifier;
67
-		$js->semantic()->popup("#".$this->_container->getIdentifier(),$this->_params);
67
+		$js->semantic()->popup("#".$this->_container->getIdentifier(), $this->_params);
68 68
 	}
69 69
 
70
-	public function setOn($event="click"){
70
+	public function setOn($event="click") {
71 71
 		$this->_params["on"]=$event;
72 72
 		return $this;
73 73
 	}
74 74
 
75
-	public function setInline($value=true){
75
+	public function setInline($value=true) {
76 76
 		$this->_params["inline"]=$value;
77 77
 		return $this;
78 78
 	}
79 79
 
80
-	public function setPosition($position){
80
+	public function setPosition($position) {
81 81
 		$this->_params["position"]=$position;
82 82
 		return $this;
83 83
 	}
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlFormDropdown.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -7,29 +7,29 @@  discard block
 block discarded – undo
7 7
 
8 8
 class HtmlFormDropdown extends HtmlFormField {
9 9
 
10
-	public function __construct($identifier,$items=array(), $label=NULL,$value="",$multiple=false,$associative=true) {
11
-		parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier,$value,$items,$associative))->asSelect($identifier,$multiple), $label);
10
+	public function __construct($identifier, $items=array(), $label=NULL, $value="", $multiple=false, $associative=true) {
11
+		parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier, $value, $items, $associative))->asSelect($identifier, $multiple), $label);
12 12
 		$this->_identifier=$identifier;
13 13
 	}
14 14
 
15
-	public function setItems($items){
15
+	public function setItems($items) {
16 16
 		return $this->getField()->setItems($items);
17 17
 	}
18
-	public function addItem($item,$value=NULL,$image=NULL){
19
-		return $this->getField()->addItem($item,$value,$image);
18
+	public function addItem($item, $value=NULL, $image=NULL) {
19
+		return $this->getField()->addItem($item, $value, $image);
20 20
 	}
21
-	public static function multipleDropdown($identifier,$items=array(), $label=NULL,$value="",$associative=true){
22
-		return new HtmlFormDropdown($identifier,$items,$label,$value,true,$associative);
21
+	public static function multipleDropdown($identifier, $items=array(), $label=NULL, $value="", $associative=true) {
22
+		return new HtmlFormDropdown($identifier, $items, $label, $value, true, $associative);
23 23
 	}
24 24
 
25 25
 	/**
26 26
 	 * @return HtmlDropdown
27 27
 	 */
28
-	public function getDataField(){
28
+	public function getDataField() {
29 29
 		return $this->getField()->getInput();
30 30
 	}
31
-	public function asSelect($name=NULL,$multiple=false,$selection=true){
32
-		$this->getField()->asSelect($name,$multiple,$selection);
31
+	public function asSelect($name=NULL, $multiple=false, $selection=true) {
32
+		$this->getField()->asSelect($name, $multiple, $selection);
33 33
 		return $this;
34 34
 	}
35 35
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 * @param boolean $floating
38 38
 	 * @return HtmlDropdown
39 39
 	 */
40
-	public function asButton($floating=false){
40
+	public function asButton($floating=false) {
41 41
 		$field=$this->content["field"];
42 42
 		$label=$this->content["label"];
43 43
 		$field->addContent($label);
Please login to merge, or discard this patch.
Ajax/service/AjaxTransition.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,26 +3,26 @@
 block discarded – undo
3 3
 use Ajax\semantic\html\base\constants\Transition;
4 4
 
5 5
 class AjaxTransition {
6
-	public static function none($responseElement,$jqueryDone="html"){
6
+	public static function none($responseElement, $jqueryDone="html") {
7 7
 		return $responseElement.".".$jqueryDone."( data )";
8 8
 	}
9 9
 
10
-	public static function jqFade($responseElement,$jqueryDone="html"){
10
+	public static function jqFade($responseElement, $jqueryDone="html") {
11 11
 		return $responseElement.".hide().{$jqueryDone}( data ).fadeIn()";
12 12
 	}
13 13
 
14
-	public static function jqSlide($responseElement,$jqueryDone="html"){
14
+	public static function jqSlide($responseElement, $jqueryDone="html") {
15 15
 		return $responseElement.".hide().{$jqueryDone}( data ).slideDown()";
16 16
 	}
17 17
 
18
-	public static function random($responseElement,$jqueryDone="html"){
18
+	public static function random($responseElement, $jqueryDone="html") {
19 19
 		$transitions=Transition::getConstantValues();
20
-		$transition=$transitions[\rand(0,\sizeof($transitions)-1)];
21
-		return self::__callStatic($transition, [$responseElement,$jqueryDone]);
20
+		$transition=$transitions[\rand(0, \sizeof($transitions)-1)];
21
+		return self::__callStatic($transition, [$responseElement, $jqueryDone]);
22 22
 	}
23 23
 
24
-	public static function __callStatic($name, $arguments){
25
-		if(\sizeof($arguments)==2){
24
+	public static function __callStatic($name, $arguments) {
25
+		if (\sizeof($arguments)==2) {
26 26
 			$responseElement=$arguments[0];
27 27
 			$jqueryDone=$arguments[1];
28 28
 			$name=JString::camelCaseToSeparated($name);
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlLabel.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * @version 1.001
19 19
  */
20 20
 class HtmlLabel extends HtmlSemDoubleElement {
21
-	use LabeledIconTrait,HasTimeoutTrait;
21
+	use LabeledIconTrait, HasTimeoutTrait;
22 22
 
23 23
 	public function __construct($identifier, $caption="", $icon=NULL, $tagName="div") {
24 24
 		parent::__construct($identifier, $tagName, "ui label");
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
 	 * @return HtmlLabel
34 34
 	 */
35 35
 	public function setPointing($value=Direction::NONE) {
36
-		if($value==="left" || $value==="right")
36
+		if ($value==="left" || $value==="right")
37 37
 			return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing"));
38 38
 		else
39
-			return $this->addToPropertyCtrl("class", "pointing ".$value, Direction::getConstantValues("pointing",true));
39
+			return $this->addToPropertyCtrl("class", "pointing ".$value, Direction::getConstantValues("pointing", true));
40 40
 	}
41 41
 
42 42
 	/**
@@ -45,15 +45,15 @@  discard block
 block discarded – undo
45 45
 	 * @return HtmlLabel
46 46
 	 */
47 47
 	public function toCorner($side="left") {
48
-		return $this->addToPropertyCtrl("class", $side . " corner", array ("right corner","left corner" ));
48
+		return $this->addToPropertyCtrl("class", $side." corner", array("right corner", "left corner"));
49 49
 	}
50 50
 
51
-	public function setHorizontal(){
52
-		return $this->addToPropertyCtrl("class", "hozizontal",array("horizontal"));
51
+	public function setHorizontal() {
52
+		return $this->addToPropertyCtrl("class", "hozizontal", array("horizontal"));
53 53
 	}
54 54
 
55
-	public function setFloating(){
56
-		return $this->addToPropertyCtrl("class", "floating",array("floating"));
55
+	public function setFloating() {
56
+		return $this->addToPropertyCtrl("class", "floating", array("floating"));
57 57
 	}
58 58
 
59 59
 	/**
@@ -64,9 +64,9 @@  discard block
 block discarded – undo
64 64
 		return $this->addToProperty("class", "tag");
65 65
 	}
66 66
 
67
-	public function setEmpty(){
67
+	public function setEmpty() {
68 68
 		$this->content=NULL;
69
-		return $this->addToPropertyCtrl("class", "empty",array("empty"));
69
+		return $this->addToPropertyCtrl("class", "empty", array("empty"));
70 70
 	}
71 71
 
72 72
 	public function setBasic() {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 	 */
83 83
 	public function addEmphasisImage($src, $alt="", $before=true) {
84 84
 		$this->addToProperty("class", "image");
85
-		return $this->addImage($src,$alt,$before);
85
+		return $this->addImage($src, $alt, $before);
86 86
 	}
87 87
 
88 88
 	/**
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	 * @return HtmlImg
94 94
 	 */
95 95
 	public function addAvatarImage($src, $alt="", $before=true) {
96
-		$img=$this->addImage($src,$alt,$before);
96
+		$img=$this->addImage($src, $alt, $before);
97 97
 		$img->setClass("ui image");
98 98
 		$img->asAvatar();
99 99
 		return $img;
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	* @return HtmlImg
108 108
 	*/
109 109
 	public function addImage($src, $alt="", $before=true) {
110
-		$img=new HtmlImg("image-" . $this->identifier, $src, $alt);
110
+		$img=new HtmlImg("image-".$this->identifier, $src, $alt);
111 111
 		$img->setClass("");
112 112
 		$this->addContent($img, $before);
113 113
 		return $img;
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 	 * @return HtmlDoubleElement
120 120
 	 */
121 121
 	public function addDetail($detail) {
122
-		$div=new HtmlSemDoubleElement("detail-" . $this->identifier, $this->tagName,"detail");
122
+		$div=new HtmlSemDoubleElement("detail-".$this->identifier, $this->tagName, "detail");
123 123
 		$div->setContent($detail);
124 124
 		$this->addContent($div);
125 125
 		return $div;
@@ -130,14 +130,14 @@  discard block
 block discarded – undo
130 130
 	 * @return HtmlLabel
131 131
 	 */
132 132
 	public function asRibbon($direction=Direction::NONE) {
133
-		return $this->addToPropertyCtrl("class", $direction." ribbon", array ("ribbon","right ribbon","left ribbon" ));
133
+		return $this->addToPropertyCtrl("class", $direction." ribbon", array("ribbon", "right ribbon", "left ribbon"));
134 134
 	}
135 135
 
136
-	public function setAttached($side=Side::TOP,$direction=Direction::NONE){
137
-		if($direction!==Direction::NONE)
138
-			return $this->addToPropertyCtrl("class", $side." ".$direction." attached",Side::getConstantValues($direction." attached"));
136
+	public function setAttached($side=Side::TOP, $direction=Direction::NONE) {
137
+		if ($direction!==Direction::NONE)
138
+			return $this->addToPropertyCtrl("class", $side." ".$direction." attached", Side::getConstantValues($direction." attached"));
139 139
 		else
140
-			return $this->addToPropertyCtrl("class", $side." attached",Side::getConstantValues("attached"));
140
+			return $this->addToPropertyCtrl("class", $side." attached", Side::getConstantValues("attached"));
141 141
 	}
142 142
 
143 143
 	/**
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 	 * @param string $direction one of RIGHT="right", LEFT="left",DOWN="down",UP="up",NONE="",BELOW="below"
147 147
 	 * @return HtmlLabel
148 148
 	 */
149
-	public static function ribbon($identifier, $caption,$direction=Direction::NONE) {
149
+	public static function ribbon($identifier, $caption, $direction=Direction::NONE) {
150 150
 		return (new HtmlLabel($identifier, $caption))->asRibbon($direction);
151 151
 	}
152 152
 
Please login to merge, or discard this patch.
Ajax/semantic/widgets/datatable/HasCheckboxesTrait.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -12,30 +12,30 @@  discard block
 block discarded – undo
12 12
  * @property string identifier
13 13
  * @property array $_compileParts
14 14
  */
15
-trait HasCheckboxesTrait{
15
+trait HasCheckboxesTrait {
16 16
 	protected $_hasCheckboxes;
17 17
 	protected $_hasCheckedMessage=false;
18 18
 	protected $_checkedMessage;
19 19
 	protected $_checkedClass;
20 20
 	protected $_checkedCallback;
21 21
 
22
-	abstract public function addInToolbar($element,$callback=NULL);
22
+	abstract public function addInToolbar($element, $callback=NULL);
23 23
 
24
-	protected function _runCheckboxes(JsUtils $js){
24
+	protected function _runCheckboxes(JsUtils $js) {
25 25
 		$js->execOn("change", "#".$this->identifier." [name='selection[]']:not(._jsonArrayChecked)", $this->_getCheckedChange($js));
26
-		if(JArray::count($this->_compileParts)<3){
27
-			$js->trigger("#".$this->identifier." [name='selection[]']","change",true);
26
+		if (JArray::count($this->_compileParts)<3) {
27
+			$js->trigger("#".$this->identifier." [name='selection[]']", "change", true);
28 28
 		}
29 29
 	}
30 30
 
31
-	protected function _getCheckedChange(JsUtils $js=NULL){
31
+	protected function _getCheckedChange(JsUtils $js=NULL) {
32 32
 		$callback="var \$parentCheckbox=\$('#ck-main-ck-{$this->identifier}'),\$checkbox=\$('#{$this->identifier} [name=\"selection[]\"]'),allChecked=true,allUnchecked=true;
33 33
 				\$checkbox.each(function() {if($(this).prop('checked')){allUnchecked = false;}else{allChecked = false;}});
34 34
 				if(allChecked) {\$parentCheckbox.checkbox('set checked');}else if(allUnchecked){\$parentCheckbox.checkbox('set unchecked');}else{\$parentCheckbox.checkbox('set indeterminate');};".$this->_getCheckedMessageCall($js);
35 35
 		return $callback;
36 36
 	}
37 37
 
38
-	protected function _getCheckedMessageFunction(){
38
+	protected function _getCheckedMessageFunction() {
39 39
 		$msg=$this->getCheckedMessage();
40 40
 		$checkedMessageFunction="$('#{$this->identifier}').bind('updateChecked',function() {var msg='".$msg[0]."',count=\$('#{$this->identifier} [name=\"selection[]\"]:checked').length,all=\$('#{$this->identifier} [name=\"selection[]\"]').length;
41 41
 		if(count==1) msg='".$msg[1]."';
@@ -45,23 +45,23 @@  discard block
 block discarded – undo
45 45
 		return $checkedMessageFunction;
46 46
 	}
47 47
 
48
-	protected function _getCheckedMessageCall(JsUtils $js=NULL){
48
+	protected function _getCheckedMessageCall(JsUtils $js=NULL) {
49 49
 		$checkedMessageCall="";
50
-		if($this->_hasCheckedMessage){
50
+		if ($this->_hasCheckedMessage) {
51 51
 			$checkedMessageCall="$('#{$this->identifier}').trigger('updateChecked');";
52
-			if(isset($this->_checkedClass)){
52
+			if (isset($this->_checkedClass)) {
53 53
 				$checkedMessageCall.="$(this).closest('tr').toggleClass('".$this->_checkedClass."',$(this).prop('checked'));";
54 54
 			}
55
-			if(isset($js))
56
-				$js->exec($this->_getCheckedMessageFunction(),true);
55
+			if (isset($js))
56
+				$js->exec($this->_getCheckedMessageFunction(), true);
57 57
 		}
58 58
 		return $checkedMessageCall;
59 59
 	}
60 60
 
61
-	protected function _generateMainCheckbox(&$captions){
62
-		$ck=new HtmlCheckbox("main-ck-".$this->identifier,"");
61
+	protected function _generateMainCheckbox(&$captions) {
62
+		$ck=new HtmlCheckbox("main-ck-".$this->identifier, "");
63 63
 		$checkedMessageCall="";
64
-		if($this->_hasCheckedMessage)
64
+		if ($this->_hasCheckedMessage)
65 65
 			$checkedMessageCall="$('#{$this->identifier}').trigger('updateChecked');";
66 66
 
67 67
 			$ck->setOnChecked($this->_setAllChecked("true").$checkedMessageCall);
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
 			\array_unshift($captions, $ck);
70 70
 	}
71 71
 
72
-	protected function _setAllChecked($checked){
72
+	protected function _setAllChecked($checked) {
73 73
 		$result="$('#".$this->identifier." [name=%quote%selection[]%quote%]:not(._jsonArrayChecked)').prop('checked',".$checked.");";
74
-		if(isset($this->_checkedClass)){
74
+		if (isset($this->_checkedClass)) {
75 75
 			$result.="$('#".$this->identifier." tr').toggleClass('".$this->_checkedClass."',".$checked.");";
76 76
 		}
77 77
 		return $result;
@@ -87,9 +87,9 @@  discard block
 block discarded – undo
87 87
 	}
88 88
 
89 89
 	protected function getCheckedMessage() {
90
-		$result= $this->_checkedMessage;
91
-		if(!isset($result)){
92
-			$result=[0=>"none selected",1=>"one item selected","other"=>"{count} items selected"];
90
+		$result=$this->_checkedMessage;
91
+		if (!isset($result)) {
92
+			$result=[0=>"none selected", 1=>"one item selected", "other"=>"{count} items selected"];
93 93
 		}
94 94
 		return $result;
95 95
 	}
@@ -109,14 +109,14 @@  discard block
 block discarded – undo
109 109
 	 * @param array $checkedMessage
110 110
 	 * @param callable $callback
111 111
 	 */
112
-	public function addCountCheckedInToolbar(array $checkedMessage=null,$callback=null){
113
-		if(isset($checkedMessage))
112
+	public function addCountCheckedInToolbar(array $checkedMessage=null, $callback=null) {
113
+		if (isset($checkedMessage))
114 114
 			$this->_checkedMessage=$checkedMessage;
115 115
 			$checkedMessage=$this->getCheckedMessage();
116 116
 			$this->_hasCheckboxes=true;
117 117
 			$this->_hasCheckedMessage=true;
118
-			$element=new HtmlLabel("checked-count-".$this->identifier,$checkedMessage[0]);
119
-			$this->addInToolbar($element,$callback);
118
+			$element=new HtmlLabel("checked-count-".$this->identifier, $checkedMessage[0]);
119
+			$this->addInToolbar($element, $callback);
120 120
 	}
121 121
 
122 122
 	public function setCheckedClass($_checkedClass) {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 	 * @param callable $checkedCallback a callback like function($object) that returns true or false
129 129
 	 */
130 130
 	public function setCheckedCallback($checkedCallback) {
131
-		$this->_checkedCallback = $checkedCallback;
131
+		$this->_checkedCallback=$checkedCallback;
132 132
 	}
133 133
 
134 134
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlHeader.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -17,14 +17,14 @@  discard block
 block discarded – undo
17 17
  * @version 1.001
18 18
  */
19 19
 class HtmlHeader extends HtmlSemDoubleElement {
20
-	use TextAlignmentTrait,AttachedTrait;
20
+	use TextAlignmentTrait, AttachedTrait;
21 21
 	protected $image;
22 22
 
23 23
 	public function __construct($identifier, $niveau=1, $content=NULL, $type="page") {
24 24
 		parent::__construct($identifier, "div", "ui header");
25 25
 		$this->_template='<%tagName%  id="%identifier%" %properties%>%image%%wrapContentBefore%%content%%wrapContentAfter%</%tagName%>';
26 26
 		if (isset($type)) {
27
-			if ($type == "page") {
27
+			if ($type=="page") {
28 28
 				$this->asPageHeader($niveau);
29 29
 			} else
30 30
 				$this->asContentHeader($niveau);
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 	}
34 34
 
35 35
 	public function asPageHeader($niveau) {
36
-		$this->tagName="h" . $niveau;
36
+		$this->tagName="h".$niveau;
37 37
 	}
38 38
 
39 39
 	public function asContentHeader($niveau) {
@@ -46,25 +46,25 @@  discard block
 block discarded – undo
46 46
 
47 47
 	public function asIcon($icon, $title, $subHeader=NULL) {
48 48
 		$this->addToProperty("class", "icon");
49
-		$this->image=new HtmlIcon("icon-" . $this->identifier, $icon);
49
+		$this->image=new HtmlIcon("icon-".$this->identifier, $icon);
50 50
 		return $this->asTitle($title, $subHeader);
51 51
 	}
52 52
 
53 53
 	public function asImage($src, $title, $subHeader=NULL) {
54
-		$this->image=new HtmlImg("img-" . $this->identifier, $src, $title);
54
+		$this->image=new HtmlImg("img-".$this->identifier, $src, $title);
55 55
 		return $this->asTitle($title, $subHeader);
56 56
 	}
57 57
 
58 58
 	public function asTitle($title, $subHeader=NULL) {
59 59
 		if (!\is_object($title)) {
60
-			$this->content=new HtmlDoubleElement("content-" . $this->identifier, "div");
60
+			$this->content=new HtmlDoubleElement("content-".$this->identifier, "div");
61 61
 			$this->content->setContent($title);
62 62
 		} else {
63 63
 			$this->content=$title;
64 64
 		}
65 65
 		$this->content->setClass("content");
66 66
 		if (isset($subHeader)) {
67
-			$sub=new HtmlDoubleElement("subheader-" . $this->identifier, "div");
67
+			$sub=new HtmlDoubleElement("subheader-".$this->identifier, "div");
68 68
 			$sub->setClass("sub header");
69 69
 			$sub->setContent($subHeader);
70 70
 			$this->content->addContent($sub);
Please login to merge, or discard this patch.
Ajax/semantic/html/content/HtmlStepItem.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -8,46 +8,46 @@
 block discarded – undo
8 8
 class HtmlStepItem extends HtmlAbsractItem {
9 9
 
10 10
 	public function __construct($identifier, $content) {
11
-		parent::__construct($identifier,"step",$content);
11
+		parent::__construct($identifier, "step", $content);
12 12
 	}
13
-	protected function initContent($content){
14
-		if(\is_array($content)){
13
+	protected function initContent($content) {
14
+		if (\is_array($content)) {
15 15
 			$icon=JArray::getValue($content, "icon", 0);
16 16
 			$title=JArray::getValue($content, "title", 1);
17 17
 			$desc=JArray::getValue($content, "description", 2);
18 18
 			$status=JArray::getValue($content, "status", 3);
19
-			if(isset($icon)){
19
+			if (isset($icon)) {
20 20
 				$this->setIcon($icon);
21 21
 			}
22
-			if(isset($status)){
22
+			if (isset($status)) {
23 23
 				$this->setStatus($status);
24 24
 			}
25
-			if(isset($title)){
26
-				$this->setTitle($title,$desc);
25
+			if (isset($title)) {
26
+				$this->setTitle($title, $desc);
27 27
 			}
28
-		}else{
28
+		} else {
29 29
 			$this->setContent($content);
30 30
 		}
31 31
 	}
32 32
 
33
-	public function setActive($value=true){
34
-		if($value)
33
+	public function setActive($value=true) {
34
+		if ($value)
35 35
 			$this->setStatus(StepStatus::ACTIVE);
36 36
 		else
37 37
 			$this->setStatus(StepStatus::NONE);
38 38
 		return $this;
39 39
 	}
40 40
 
41
-	public function setCompleted(){
42
-		$this->removePropertyValues("class", [StepStatus::COMPLETED,StepStatus::DISABLED]);
41
+	public function setCompleted() {
42
+		$this->removePropertyValues("class", [StepStatus::COMPLETED, StepStatus::DISABLED]);
43 43
 		return $this->setStatus(StepStatus::COMPLETED);
44 44
 	}
45 45
 
46
-	public function setStatus($status){
46
+	public function setStatus($status) {
47 47
 		return $this->addToPropertyCtrl("class", $status, StepStatus::getConstants());
48 48
 	}
49 49
 
50
-	public function removeStatus(){
50
+	public function removeStatus() {
51 51
 		$this->removePropertyValues("class", StepStatus::getConstants());
52 52
 	}
53 53
 }
Please login to merge, or discard this patch.
Ajax/common/html/HtmlSingleElement.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	}
14 14
 
15 15
 	public function setClass($classNames) {
16
-		if(\is_array($classNames)){
16
+		if (\is_array($classNames)) {
17 17
 			$classNames=implode(" ", $classNames);
18 18
 		}
19 19
 		$this->setProperty("class", $classNames);
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	}
22 22
 
23 23
 	public function addClass($classNames) {
24
-		if(\is_array($classNames)){
24
+		if (\is_array($classNames)) {
25 25
 			$classNames=implode(" ", $classNames);
26 26
 		}
27 27
 		$this->addToProperty("class", $classNames);
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 		return $this;
39 39
 	}
40 40
 	
41
-	public function setStyle($value){
41
+	public function setStyle($value) {
42 42
 		$this->setProperty("style", $value);
43 43
 		return $this;
44 44
 	}
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 	 */
58 58
 	public function fromArray($array) {
59 59
 		$array=parent::fromArray($array);
60
-		foreach ( $array as $key => $value ) {
60
+		foreach ($array as $key => $value) {
61 61
 			$this->setProperty($key, $value);
62 62
 		}
63 63
 		return $array;
Please login to merge, or discard this patch.