@@ -10,7 +10,6 @@ |
||
| 10 | 10 | use Ajax\semantic\html\elements\HtmlLabel; |
| 11 | 11 | use Ajax\semantic\html\modules\HtmlProgress; |
| 12 | 12 | use Ajax\semantic\html\modules\HtmlRating; |
| 13 | -use Ajax\semantic\html\collections\HtmlMessage; |
|
| 14 | 13 | /** |
| 15 | 14 | * @author jc |
| 16 | 15 | * @property InstanceViewer $_instanceViewer |
@@ -16,111 +16,111 @@ |
||
| 16 | 16 | * @property InstanceViewer $_instanceViewer |
| 17 | 17 | */ |
| 18 | 18 | |
| 19 | -trait FieldAsTrait{ |
|
| 19 | +trait FieldAsTrait { |
|
| 20 | 20 | |
| 21 | 21 | abstract protected function _getFieldIdentifier($prefix); |
| 22 | - abstract public function setValueFunction($index,$callback); |
|
| 22 | + abstract public function setValueFunction($index, $callback); |
|
| 23 | 23 | |
| 24 | - private function _getLabelField($caption,$icon=NULL){ |
|
| 25 | - $label=new HtmlLabel($this->_getFieldIdentifier("lbl"),$caption,$icon); |
|
| 24 | + private function _getLabelField($caption, $icon=NULL) { |
|
| 25 | + $label=new HtmlLabel($this->_getFieldIdentifier("lbl"), $caption, $icon); |
|
| 26 | 26 | return $label; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - protected function _addRules($element,$attributes){} |
|
| 29 | + protected function _addRules($element, $attributes) {} |
|
| 30 | 30 | |
| 31 | - protected function _fieldAs($elementCallback,$index,$attributes=NULL,$prefix=null){ |
|
| 32 | - $this->setValueFunction($index,function($value) use ($index,&$attributes,$elementCallback,$prefix){ |
|
| 31 | + protected function _fieldAs($elementCallback, $index, $attributes=NULL, $prefix=null) { |
|
| 32 | + $this->setValueFunction($index, function($value) use ($index, &$attributes, $elementCallback, $prefix){ |
|
| 33 | 33 | $name=$this->_instanceViewer->getCaption($index)."[]"; |
| 34 | - if(isset($attributes["name"])===true){ |
|
| 34 | + if (isset($attributes["name"])===true) { |
|
| 35 | 35 | $name=$attributes["name"]; |
| 36 | 36 | } |
| 37 | - $element=$elementCallback($this->_getFieldIdentifier($prefix),$name,$value,""); |
|
| 38 | - if(\is_array($attributes)) |
|
| 39 | - $this->_applyAttributes($element, $attributes,$index); |
|
| 37 | + $element=$elementCallback($this->_getFieldIdentifier($prefix), $name, $value, ""); |
|
| 38 | + if (\is_array($attributes)) |
|
| 39 | + $this->_applyAttributes($element, $attributes, $index); |
|
| 40 | 40 | return $element; |
| 41 | 41 | }); |
| 42 | 42 | return $this; |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | |
| 46 | - public function fieldAsProgress($index,$label=NULL, $attributes=array()){ |
|
| 47 | - $this->setValueFunction($index,function($value) use($label,$attributes){ |
|
| 48 | - $pb=new HtmlProgress($this->_getFieldIdentifier("pb"),$value,$label,$attributes); |
|
| 46 | + public function fieldAsProgress($index, $label=NULL, $attributes=array()) { |
|
| 47 | + $this->setValueFunction($index, function($value) use($label, $attributes){ |
|
| 48 | + $pb=new HtmlProgress($this->_getFieldIdentifier("pb"), $value, $label, $attributes); |
|
| 49 | 49 | return $pb; |
| 50 | 50 | }); |
| 51 | 51 | return $this; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - public function fieldAsRating($index,$max=5, $icon=""){ |
|
| 55 | - $this->setValueFunction($index,function($value) use($max,$icon){ |
|
| 56 | - $rating=new HtmlRating($this->_getFieldIdentifier("rat"),$value,$max,$icon); |
|
| 54 | + public function fieldAsRating($index, $max=5, $icon="") { |
|
| 55 | + $this->setValueFunction($index, function($value) use($max, $icon){ |
|
| 56 | + $rating=new HtmlRating($this->_getFieldIdentifier("rat"), $value, $max, $icon); |
|
| 57 | 57 | return $rating; |
| 58 | 58 | }); |
| 59 | 59 | return $this; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - public function fieldAsLabel($index,$icon=NULL){ |
|
| 63 | - $this->setValueFunction($index,function($caption) use($icon){ |
|
| 64 | - $lbl=$this->_getLabelField($caption,$icon); |
|
| 62 | + public function fieldAsLabel($index, $icon=NULL) { |
|
| 63 | + $this->setValueFunction($index, function($caption) use($icon){ |
|
| 64 | + $lbl=$this->_getLabelField($caption, $icon); |
|
| 65 | 65 | return $lbl; |
| 66 | 66 | }); |
| 67 | 67 | return $this; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - public function fieldAsImage($index,$size=Size::SMALL,$circular=false){ |
|
| 71 | - $this->setValueFunction($index,function($img) use($size,$circular){ |
|
| 72 | - $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular)$image->setCircular(); |
|
| 70 | + public function fieldAsImage($index, $size=Size::SMALL, $circular=false) { |
|
| 71 | + $this->setValueFunction($index, function($img) use($size, $circular){ |
|
| 72 | + $image=new HtmlImage($this->_getFieldIdentifier("image"), $img); $image->setSize($size); if ($circular)$image->setCircular(); |
|
| 73 | 73 | return $image; |
| 74 | 74 | }); |
| 75 | 75 | return $this; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - public function fieldAsAvatar($index,$attributes=NULL){ |
|
| 79 | - return $this->_fieldAs(function($id,$name,$value){ |
|
| 80 | - $img=new HtmlImage($id,$value); |
|
| 78 | + public function fieldAsAvatar($index, $attributes=NULL) { |
|
| 79 | + return $this->_fieldAs(function($id, $name, $value) { |
|
| 80 | + $img=new HtmlImage($id, $value); |
|
| 81 | 81 | $img->asAvatar(); |
| 82 | 82 | return $img; |
| 83 | - }, $index,$attributes,"avatar"); |
|
| 83 | + }, $index, $attributes, "avatar"); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - public function fieldAsRadio($index,$attributes=NULL){ |
|
| 87 | - return $this->_fieldAs(function($id,$name,$value){ |
|
| 88 | - $input= new HtmlRadio($id,$name,$value,$value); |
|
| 86 | + public function fieldAsRadio($index, $attributes=NULL) { |
|
| 87 | + return $this->_fieldAs(function($id, $name, $value) { |
|
| 88 | + $input=new HtmlRadio($id, $name, $value, $value); |
|
| 89 | 89 | return $input; |
| 90 | - }, $index,$attributes,"radio"); |
|
| 90 | + }, $index, $attributes, "radio"); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - public function fieldAsInput($index,$attributes=NULL){ |
|
| 94 | - return $this->_fieldAs(function($id,$name,$value){ |
|
| 95 | - $input= new HtmlInput($id,"text",$value); |
|
| 93 | + public function fieldAsInput($index, $attributes=NULL) { |
|
| 94 | + return $this->_fieldAs(function($id, $name, $value) { |
|
| 95 | + $input=new HtmlInput($id, "text", $value); |
|
| 96 | 96 | //TODO check getField |
| 97 | 97 | $input->setName($name); |
| 98 | 98 | return $input; |
| 99 | - }, $index,$attributes,"input"); |
|
| 99 | + }, $index, $attributes, "input"); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - public function fieldAsHidden($index,$attributes=NULL){ |
|
| 103 | - if(\is_array($attributes)===false){ |
|
| 102 | + public function fieldAsHidden($index, $attributes=NULL) { |
|
| 103 | + if (\is_array($attributes)===false) { |
|
| 104 | 104 | $attributes=[]; |
| 105 | 105 | } |
| 106 | 106 | $attributes["imputType"]="hidden"; |
| 107 | - return $this->fieldAsInput($index,$attributes); |
|
| 107 | + return $this->fieldAsInput($index, $attributes); |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - public function fieldAsCheckbox($index,$attributes=NULL){ |
|
| 111 | - return $this->_fieldAs(function($id,$name,$value){ |
|
| 112 | - $input=new HtmlCheckbox($id,"",$this->_instanceViewer->getIdentifier()); |
|
| 110 | + public function fieldAsCheckbox($index, $attributes=NULL) { |
|
| 111 | + return $this->_fieldAs(function($id, $name, $value) { |
|
| 112 | + $input=new HtmlCheckbox($id, "", $this->_instanceViewer->getIdentifier()); |
|
| 113 | 113 | $input->setChecked(JString::isBooleanTrue($value)); |
| 114 | 114 | $input->getField()->setProperty("name", $name); |
| 115 | 115 | return $input; |
| 116 | - }, $index,$attributes,"ck"); |
|
| 116 | + }, $index, $attributes, "ck"); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - public function fieldAsDropDown($index,$elements=[],$multiple=false,$attributes=NULL){ |
|
| 120 | - return $this->_fieldAs(function($id,$name,$value) use($elements,$multiple){ |
|
| 121 | - $dd=new HtmlDropdown($id,$value,$elements); |
|
| 122 | - $dd->asSelect($name,$multiple); |
|
| 119 | + public function fieldAsDropDown($index, $elements=[], $multiple=false, $attributes=NULL) { |
|
| 120 | + return $this->_fieldAs(function($id, $name, $value) use($elements, $multiple){ |
|
| 121 | + $dd=new HtmlDropdown($id, $value, $elements); |
|
| 122 | + $dd->asSelect($name, $multiple); |
|
| 123 | 123 | return $dd; |
| 124 | - }, $index,$attributes,"dd"); |
|
| 124 | + }, $index, $attributes, "dd"); |
|
| 125 | 125 | } |
| 126 | 126 | } |
| 127 | 127 | \ No newline at end of file |
@@ -13,13 +13,13 @@ discard block |
||
| 13 | 13 | use Ajax\semantic\html\collections\form\traits\FieldTrait; |
| 14 | 14 | |
| 15 | 15 | class HtmlDropdown extends HtmlSemDoubleElement { |
| 16 | - use FieldTrait,LabeledIconTrait { |
|
| 16 | + use FieldTrait, LabeledIconTrait { |
|
| 17 | 17 | addIcon as addIconP; |
| 18 | 18 | } |
| 19 | 19 | protected $mClass="menu"; |
| 20 | 20 | protected $mTagName="div"; |
| 21 | - protected $items=array (); |
|
| 22 | - protected $_params=array("action"=>"nothing","on"=>"hover"); |
|
| 21 | + protected $items=array(); |
|
| 22 | + protected $_params=array("action"=>"nothing", "on"=>"hover"); |
|
| 23 | 23 | protected $input; |
| 24 | 24 | protected $value; |
| 25 | 25 | |
@@ -27,27 +27,27 @@ discard block |
||
| 27 | 27 | parent::__construct($identifier, "div"); |
| 28 | 28 | $this->_template=include dirname(__FILE__).'/../templates/tplDropdown.php'; |
| 29 | 29 | $this->setProperty("class", "ui dropdown"); |
| 30 | - $content=new HtmlSemDoubleElement("text-".$this->identifier,"div"); |
|
| 30 | + $content=new HtmlSemDoubleElement("text-".$this->identifier, "div"); |
|
| 31 | 31 | $content->setClass("text"); |
| 32 | 32 | $this->setValue($value); |
| 33 | - $content->wrap("",new HtmlIcon("", "dropdown")); |
|
| 33 | + $content->wrap("", new HtmlIcon("", "dropdown")); |
|
| 34 | 34 | $this->content=array($content); |
| 35 | 35 | $this->tagName="div"; |
| 36 | 36 | $this->addItems($items); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - public function getField(){ |
|
| 39 | + public function getField() { |
|
| 40 | 40 | return $this->input; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - public function addItem($item,$value=NULL,$image=NULL,$description=NULL){ |
|
| 44 | - $itemO=$this->beforeAddItem($item,$value,$image,$description); |
|
| 43 | + public function addItem($item, $value=NULL, $image=NULL, $description=NULL) { |
|
| 44 | + $itemO=$this->beforeAddItem($item, $value, $image, $description); |
|
| 45 | 45 | $this->items[]=$itemO; |
| 46 | 46 | return $itemO; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - public function addIcon($icon,$before=true,$labeled=false){ |
|
| 50 | - $this->addIconP($icon,$before,$labeled); |
|
| 49 | + public function addIcon($icon, $before=true, $labeled=false) { |
|
| 50 | + $this->addIconP($icon, $before, $labeled); |
|
| 51 | 51 | return $this->getElementById("text-".$this->identifier, $this->content)->setWrapAfter(""); |
| 52 | 52 | } |
| 53 | 53 | |
@@ -57,26 +57,26 @@ discard block |
||
| 57 | 57 | * @param number $position |
| 58 | 58 | * @return \Ajax\semantic\html\content\HtmlDropdownItem|unknown |
| 59 | 59 | */ |
| 60 | - public function insertItem($item,$position=0){ |
|
| 60 | + public function insertItem($item, $position=0) { |
|
| 61 | 61 | $itemO=$this->beforeAddItem($item); |
| 62 | - $start = array_slice($this->items, 0, $position); |
|
| 63 | - $end = array_slice($this->items, $position); |
|
| 64 | - $start[] = $item; |
|
| 62 | + $start=array_slice($this->items, 0, $position); |
|
| 63 | + $end=array_slice($this->items, $position); |
|
| 64 | + $start[]=$item; |
|
| 65 | 65 | $this->items=array_merge($start, $end); |
| 66 | 66 | return $itemO; |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - protected function beforeAddItem($item,$value=NULL,$image=NULL,$description=NULL){ |
|
| 69 | + protected function beforeAddItem($item, $value=NULL, $image=NULL, $description=NULL) { |
|
| 70 | 70 | $itemO=$item; |
| 71 | - if(\is_array($item)){ |
|
| 71 | + if (\is_array($item)) { |
|
| 72 | 72 | $description=JArray::getValue($item, "description", 3); |
| 73 | 73 | $value=JArray::getValue($item, "value", 1); |
| 74 | 74 | $image=JArray::getValue($item, "image", 2); |
| 75 | 75 | $item=JArray::getValue($item, "item", 0); |
| 76 | 76 | } |
| 77 | - if(!$item instanceof HtmlDropdownItem){ |
|
| 78 | - $itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items),$item,$value,$image,$description); |
|
| 79 | - }elseif($itemO instanceof HtmlDropdownItem){ |
|
| 77 | + if (!$item instanceof HtmlDropdownItem) { |
|
| 78 | + $itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items), $item, $value, $image, $description); |
|
| 79 | + }elseif ($itemO instanceof HtmlDropdownItem) { |
|
| 80 | 80 | $this->addToProperty("class", "vertical"); |
| 81 | 81 | } |
| 82 | 82 | return $itemO; |
@@ -89,11 +89,11 @@ discard block |
||
| 89 | 89 | $this->addItem($function($object)); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - public function addInput($name){ |
|
| 93 | - if(!isset($name)) |
|
| 92 | + public function addInput($name) { |
|
| 93 | + if (!isset($name)) |
|
| 94 | 94 | $name="input-".$this->identifier; |
| 95 | 95 | $this->setAction("activate"); |
| 96 | - $this->input=new HtmlInput($name,"hidden"); |
|
| 96 | + $this->input=new HtmlInput($name, "hidden"); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
@@ -102,15 +102,15 @@ discard block |
||
| 102 | 102 | * @param string $icon |
| 103 | 103 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
| 104 | 104 | */ |
| 105 | - public function addSearchInputItem($placeHolder=NULL,$icon=NULL){ |
|
| 106 | - return $this->addItem(HtmlDropdownItem::searchInput($placeHolder,$icon)); |
|
| 105 | + public function addSearchInputItem($placeHolder=NULL, $icon=NULL) { |
|
| 106 | + return $this->addItem(HtmlDropdownItem::searchInput($placeHolder, $icon)); |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | /** |
| 110 | 110 | * Adds a divider item |
| 111 | 111 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
| 112 | 112 | */ |
| 113 | - public function addDividerItem(){ |
|
| 113 | + public function addDividerItem() { |
|
| 114 | 114 | return $this->addItem(HtmlDropdownItem::divider()); |
| 115 | 115 | } |
| 116 | 116 | |
@@ -120,8 +120,8 @@ discard block |
||
| 120 | 120 | * @param string $icon |
| 121 | 121 | * @return \Ajax\semantic\html\content\HtmlDropdownItem|unknown |
| 122 | 122 | */ |
| 123 | - public function addHeaderItem($caption=NULL,$icon=NULL){ |
|
| 124 | - return $this->addItem(HtmlDropdownItem::header($caption,$icon)); |
|
| 123 | + public function addHeaderItem($caption=NULL, $icon=NULL) { |
|
| 124 | + return $this->addItem(HtmlDropdownItem::header($caption, $icon)); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | * @param string $color |
| 131 | 131 | * @return \Ajax\semantic\html\content\HtmlDropdownItem|unknown |
| 132 | 132 | */ |
| 133 | - public function addCircularLabelItem($caption,$color){ |
|
| 133 | + public function addCircularLabelItem($caption, $color) { |
|
| 134 | 134 | return $this->addItem(HtmlDropdownItem::circular($caption, $color)); |
| 135 | 135 | } |
| 136 | 136 | |
@@ -139,87 +139,87 @@ discard block |
||
| 139 | 139 | * @param string $image |
| 140 | 140 | * @return \Ajax\semantic\html\content\HtmlDropdownItem |
| 141 | 141 | */ |
| 142 | - public function addMiniAvatarImageItem($caption,$image){ |
|
| 142 | + public function addMiniAvatarImageItem($caption, $image) { |
|
| 143 | 143 | return $this->addItem(HtmlDropdownItem::avatar($caption, $image)); |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - public function addItems($items){ |
|
| 147 | - if(JArray::isAssociative($items)){ |
|
| 148 | - foreach ($items as $k=>$v){ |
|
| 146 | + public function addItems($items) { |
|
| 147 | + if (JArray::isAssociative($items)) { |
|
| 148 | + foreach ($items as $k=>$v) { |
|
| 149 | 149 | $this->addItem($v)->setData($k); |
| 150 | 150 | } |
| 151 | - }else{ |
|
| 152 | - foreach ($items as $item){ |
|
| 151 | + } else { |
|
| 152 | + foreach ($items as $item) { |
|
| 153 | 153 | $this->addItem($item); |
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - public function getItem($index){ |
|
| 158 | + public function getItem($index) { |
|
| 159 | 159 | return $this->items[$index]; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
| 163 | 163 | * @return int |
| 164 | 164 | */ |
| 165 | - public function count(){ |
|
| 165 | + public function count() { |
|
| 166 | 166 | return \sizeof($this->items); |
| 167 | 167 | } |
| 168 | 168 | /** |
| 169 | 169 | * @param boolean $dropdown |
| 170 | 170 | */ |
| 171 | - public function asDropdown($dropdown){ |
|
| 172 | - if($dropdown===false){ |
|
| 171 | + public function asDropdown($dropdown) { |
|
| 172 | + if ($dropdown===false) { |
|
| 173 | 173 | $this->_template=include dirname(__FILE__).'/../templates/tplDropdownMenu.php'; |
| 174 | 174 | $dropdown="menu"; |
| 175 | - }else{ |
|
| 175 | + } else { |
|
| 176 | 176 | $dropdown="dropdown"; |
| 177 | 177 | $this->mClass="menu"; |
| 178 | 178 | } |
| 179 | - return $this->addToPropertyCtrl("class", $dropdown,array("menu","dropdown")); |
|
| 179 | + return $this->addToPropertyCtrl("class", $dropdown, array("menu", "dropdown")); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - public function setVertical(){ |
|
| 183 | - return $this->addToPropertyCtrl("class", "vertical",array("vertical")); |
|
| 182 | + public function setVertical() { |
|
| 183 | + return $this->addToPropertyCtrl("class", "vertical", array("vertical")); |
|
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - public function setInline(){ |
|
| 187 | - return $this->addToPropertyCtrl("class", "inline",["inline"]); |
|
| 186 | + public function setInline() { |
|
| 187 | + return $this->addToPropertyCtrl("class", "inline", ["inline"]); |
|
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - public function setSimple(){ |
|
| 191 | - return $this->addToPropertyCtrl("class", "simple",array("simple")); |
|
| 190 | + public function setSimple() { |
|
| 191 | + return $this->addToPropertyCtrl("class", "simple", array("simple")); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - public function asButton($floating=false){ |
|
| 195 | - if($floating) |
|
| 194 | + public function asButton($floating=false) { |
|
| 195 | + if ($floating) |
|
| 196 | 196 | $this->addToProperty("class", "floating"); |
| 197 | 197 | $this->removePropertyValue("class", "selection"); |
| 198 | 198 | return $this->addToProperty("class", "button"); |
| 199 | 199 | } |
| 200 | 200 | |
| 201 | - public function asSelect($name=NULL,$multiple=false,$selection=true){ |
|
| 202 | - if(isset($name)) |
|
| 201 | + public function asSelect($name=NULL, $multiple=false, $selection=true) { |
|
| 202 | + if (isset($name)) |
|
| 203 | 203 | $this->addInput($name); |
| 204 | - if($multiple) |
|
| 204 | + if ($multiple) |
|
| 205 | 205 | $this->addToProperty("class", "multiple"); |
| 206 | - if ($selection){ |
|
| 207 | - if($this->propertyContains("class", "button")===false) |
|
| 208 | - $this->addToPropertyCtrl("class", "selection",array("selection")); |
|
| 206 | + if ($selection) { |
|
| 207 | + if ($this->propertyContains("class", "button")===false) |
|
| 208 | + $this->addToPropertyCtrl("class", "selection", array("selection")); |
|
| 209 | 209 | } |
| 210 | 210 | return $this; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - public function asSearch($name=NULL,$multiple=false,$selection=true){ |
|
| 214 | - $this->asSelect($name,$multiple,$selection); |
|
| 213 | + public function asSearch($name=NULL, $multiple=false, $selection=true) { |
|
| 214 | + $this->asSelect($name, $multiple, $selection); |
|
| 215 | 215 | return $this->addToProperty("class", "search"); |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - public function setSelect($name=NULL,$multiple=false){ |
|
| 219 | - if(!isset($name)) |
|
| 218 | + public function setSelect($name=NULL, $multiple=false) { |
|
| 219 | + if (!isset($name)) |
|
| 220 | 220 | $name="select-".$this->identifier; |
| 221 | 221 | $this->input=null; |
| 222 | - if($multiple){ |
|
| 222 | + if ($multiple) { |
|
| 223 | 223 | $this->setProperty("multiple", true); |
| 224 | 224 | $this->addToProperty("class", "multiple"); |
| 225 | 225 | } |
@@ -227,37 +227,37 @@ discard block |
||
| 227 | 227 | $this->tagName="select"; |
| 228 | 228 | $this->setProperty("name", $name); |
| 229 | 229 | $this->content=null; |
| 230 | - foreach ($this->items as $item){ |
|
| 230 | + foreach ($this->items as $item) { |
|
| 231 | 231 | $item->asOption(); |
| 232 | 232 | } |
| 233 | 233 | return $this; |
| 234 | 234 | } |
| 235 | 235 | |
| 236 | - public function asSubmenu($pointing=NULL){ |
|
| 236 | + public function asSubmenu($pointing=NULL) { |
|
| 237 | 237 | $this->setClass("ui dropdown link item"); |
| 238 | - if(isset($pointing)){ |
|
| 238 | + if (isset($pointing)) { |
|
| 239 | 239 | $this->setPointing($pointing); |
| 240 | 240 | } |
| 241 | 241 | return $this; |
| 242 | 242 | } |
| 243 | 243 | |
| 244 | - public function setPointing($value=Direction::NONE){ |
|
| 245 | - return $this->addToPropertyCtrl("class", $value." pointing",Direction::getConstantValues("pointing")); |
|
| 244 | + public function setPointing($value=Direction::NONE) { |
|
| 245 | + return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing")); |
|
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - public function setValue($value){ |
|
| 248 | + public function setValue($value) { |
|
| 249 | 249 | $this->value=$value; |
| 250 | 250 | return $this; |
| 251 | 251 | } |
| 252 | - private function applyValue(){ |
|
| 252 | + private function applyValue() { |
|
| 253 | 253 | $value=$this->value; |
| 254 | - if(isset($this->input) && isset($value)){ |
|
| 254 | + if (isset($this->input) && isset($value)) { |
|
| 255 | 255 | $this->input->setProperty("value", $value); |
| 256 | - }else{ |
|
| 256 | + } else { |
|
| 257 | 257 | $this->setProperty("value", $value); |
| 258 | 258 | } |
| 259 | 259 | $textElement=$this->getElementById("text-".$this->identifier, $this->content); |
| 260 | - if(isset($textElement)) |
|
| 260 | + if (isset($textElement)) |
|
| 261 | 261 | $textElement->setContent($value); |
| 262 | 262 | return $this; |
| 263 | 263 | } |
@@ -267,29 +267,29 @@ discard block |
||
| 267 | 267 | * @see BaseHtml::run() |
| 268 | 268 | */ |
| 269 | 269 | public function run(JsUtils $js) { |
| 270 | - if($this->propertyContains("class", "simple")===false){ |
|
| 271 | - if(isset($this->_bsComponent)===false) |
|
| 272 | - $this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier,$this->_params); |
|
| 270 | + if ($this->propertyContains("class", "simple")===false) { |
|
| 271 | + if (isset($this->_bsComponent)===false) |
|
| 272 | + $this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier, $this->_params); |
|
| 273 | 273 | $this->addEventsOnRun($js); |
| 274 | 274 | return $this->_bsComponent; |
| 275 | 275 | } |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - public function setCompact(){ |
|
| 278 | + public function setCompact() { |
|
| 279 | 279 | return $this->addToPropertyCtrl("class", "compact", array("compact")); |
| 280 | 280 | } |
| 281 | 281 | |
| 282 | - public function setAction($action){ |
|
| 282 | + public function setAction($action) { |
|
| 283 | 283 | $this->_params["action"]=$action; |
| 284 | 284 | } |
| 285 | 285 | |
| 286 | - public function setFullTextSearch($value){ |
|
| 286 | + public function setFullTextSearch($value) { |
|
| 287 | 287 | $this->_params["fullTextSearch"]=$value; |
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 291 | 291 | $this->applyValue(); |
| 292 | - return parent::compile($js,$view); |
|
| 292 | + return parent::compile($js, $view); |
|
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | public function getInput() { |
@@ -7,21 +7,21 @@ |
||
| 7 | 7 | |
| 8 | 8 | class HtmlFormDropdown extends HtmlFormField { |
| 9 | 9 | |
| 10 | - public function __construct($identifier,$items=array(), $label=NULL,$value=NULL,$multiple=false) { |
|
| 11 | - parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier,$value,$items))->asSelect($identifier,$multiple), $label); |
|
| 10 | + public function __construct($identifier, $items=array(), $label=NULL, $value=NULL, $multiple=false) { |
|
| 11 | + parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier, $value, $items))->asSelect($identifier, $multiple), $label); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | - public function setItems($items){ |
|
| 14 | + public function setItems($items) { |
|
| 15 | 15 | return $this->getField()->setItems($items); |
| 16 | 16 | } |
| 17 | - public function addItem($item,$value=NULL,$image=NULL){ |
|
| 18 | - return $this->getField()->addItem($item,$value,$image); |
|
| 17 | + public function addItem($item, $value=NULL, $image=NULL) { |
|
| 18 | + return $this->getField()->addItem($item, $value, $image); |
|
| 19 | 19 | } |
| 20 | - public static function multipleDropdown($identifier,$items=array(), $label=NULL,$value=NULL){ |
|
| 21 | - return new HtmlFormDropdown($identifier,$items,$label,$value,true); |
|
| 20 | + public static function multipleDropdown($identifier, $items=array(), $label=NULL, $value=NULL) { |
|
| 21 | + return new HtmlFormDropdown($identifier, $items, $label, $value, true); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | - public function getDataField(){ |
|
| 24 | + public function getDataField() { |
|
| 25 | 25 | return $this->getField()->getInput(); |
| 26 | 26 | } |
| 27 | 27 | } |
| 28 | 28 | \ No newline at end of file |
@@ -14,34 +14,34 @@ discard block |
||
| 14 | 14 | use FieldTrait; |
| 15 | 15 | protected $_container; |
| 16 | 16 | protected $_validation; |
| 17 | - public function __construct($identifier, $field,$label=NULL) { |
|
| 18 | - parent::__construct($identifier, "div","field"); |
|
| 17 | + public function __construct($identifier, $field, $label=NULL) { |
|
| 18 | + parent::__construct($identifier, "div", "field"); |
|
| 19 | 19 | $this->content=array(); |
| 20 | - $this->_states=[State::ERROR,State::DISABLED]; |
|
| 21 | - if(isset($label)===true) |
|
| 20 | + $this->_states=[State::ERROR, State::DISABLED]; |
|
| 21 | + if (isset($label)===true) |
|
| 22 | 22 | $this->setLabel($label); |
| 23 | 23 | $this->setField($field); |
| 24 | 24 | $this->_validation=NULL; |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - public function addPointingLabel($label,$pointing=Direction::NONE){ |
|
| 28 | - $labelO=new HtmlLabel("",$label); |
|
| 27 | + public function addPointingLabel($label, $pointing=Direction::NONE) { |
|
| 28 | + $labelO=new HtmlLabel("", $label); |
|
| 29 | 29 | $labelO->setPointing($pointing); |
| 30 | - $this->addContent($labelO,$pointing==="below" || $pointing==="right"); |
|
| 30 | + $this->addContent($labelO, $pointing==="below" || $pointing==="right"); |
|
| 31 | 31 | return $labelO; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - public function setLabel($label){ |
|
| 34 | + public function setLabel($label) { |
|
| 35 | 35 | $labelO=$label; |
| 36 | - if(\is_string($label)){ |
|
| 37 | - $labelO=new HtmlSemDoubleElement("","label",""); |
|
| 36 | + if (\is_string($label)) { |
|
| 37 | + $labelO=new HtmlSemDoubleElement("", "label", ""); |
|
| 38 | 38 | $labelO->setContent($label); |
| 39 | - $labelO->setProperty("for", \str_replace("field-", "",$this->identifier)); |
|
| 39 | + $labelO->setProperty("for", \str_replace("field-", "", $this->identifier)); |
|
| 40 | 40 | } |
| 41 | 41 | $this->content["label"]=$labelO; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - public function setField($field){ |
|
| 44 | + public function setField($field) { |
|
| 45 | 45 | $this->content["field"]=$field; |
| 46 | 46 | } |
| 47 | 47 | |
@@ -49,8 +49,8 @@ discard block |
||
| 49 | 49 | * Returns the label or null |
| 50 | 50 | * @return mixed |
| 51 | 51 | */ |
| 52 | - public function getLabel(){ |
|
| 53 | - if(\array_key_exists("label", $this->content)) |
|
| 52 | + public function getLabel() { |
|
| 53 | + if (\array_key_exists("label", $this->content)) |
|
| 54 | 54 | return $this->content["label"]; |
| 55 | 55 | } |
| 56 | 56 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * Return the field |
| 59 | 59 | * @return mixed |
| 60 | 60 | */ |
| 61 | - public function getField(){ |
|
| 61 | + public function getField() { |
|
| 62 | 62 | return $this->content["field"]; |
| 63 | 63 | } |
| 64 | 64 | |
@@ -66,14 +66,14 @@ discard block |
||
| 66 | 66 | * Return the field with data |
| 67 | 67 | * @return mixed |
| 68 | 68 | */ |
| 69 | - public function getDataField(){ |
|
| 69 | + public function getDataField() { |
|
| 70 | 70 | return $this->content["field"]; |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * puts the label before or behind |
| 75 | 75 | */ |
| 76 | - public function swapLabel(){ |
|
| 76 | + public function swapLabel() { |
|
| 77 | 77 | $label=$this->getLabel(); |
| 78 | 78 | unset($this->content["label"]); |
| 79 | 79 | $this->content["label"]=$label; |
@@ -84,31 +84,31 @@ discard block |
||
| 84 | 84 | * @param int $width |
| 85 | 85 | * @return \Ajax\semantic\html\collections\form\HtmlFormField |
| 86 | 86 | */ |
| 87 | - public function setWidth($width){ |
|
| 88 | - if(\is_int($width)){ |
|
| 87 | + public function setWidth($width) { |
|
| 88 | + if (\is_int($width)) { |
|
| 89 | 89 | $width=Wide::getConstants()["W".$width]; |
| 90 | 90 | } |
| 91 | 91 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 92 | - if(isset($this->_container)){ |
|
| 92 | + if (isset($this->_container)) { |
|
| 93 | 93 | $this->_container->setEqualWidth(false); |
| 94 | 94 | } |
| 95 | - return $this->addToPropertyCtrl("class", "wide",array("wide")); |
|
| 95 | + return $this->addToPropertyCtrl("class", "wide", array("wide")); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
| 99 | 99 | * Field displays an error state |
| 100 | 100 | * @return \Ajax\semantic\html\collections\form\HtmlFormField |
| 101 | 101 | */ |
| 102 | - public function setError(){ |
|
| 102 | + public function setError() { |
|
| 103 | 103 | return $this->addToProperty("class", "error"); |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | - public function setInline(){ |
|
| 106 | + public function setInline() { |
|
| 107 | 107 | return $this->addToProperty("class", "inline"); |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - public function jsState($state){ |
|
| 111 | - return $this->jsDoJquery("addClass",$state); |
|
| 110 | + public function jsState($state) { |
|
| 111 | + return $this->jsDoJquery("addClass", $state); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | public function setContainer($_container) { |
@@ -116,26 +116,26 @@ discard block |
||
| 116 | 116 | return $this; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - public function setReadonly(){ |
|
| 119 | + public function setReadonly() { |
|
| 120 | 120 | $this->getField()->setProperty("readonly", ""); |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | - public function addRule($type,$prompt=NULL,$value=NULL){ |
|
| 123 | + public function addRule($type, $prompt=NULL, $value=NULL) { |
|
| 124 | 124 | $field=$this->getDataField(); |
| 125 | - if(isset($field)){ |
|
| 126 | - if(!isset($this->_validation)){ |
|
| 125 | + if (isset($field)) { |
|
| 126 | + if (!isset($this->_validation)) { |
|
| 127 | 127 | $this->_validation=new FieldValidation($field->getIdentifier()); |
| 128 | 128 | } |
| 129 | - if($type==="empty"){ |
|
| 130 | - $this->addToProperty("class","required"); |
|
| 129 | + if ($type==="empty") { |
|
| 130 | + $this->addToProperty("class", "required"); |
|
| 131 | 131 | } |
| 132 | - $this->_validation->addRule($type,$prompt,$value); |
|
| 132 | + $this->_validation->addRule($type, $prompt, $value); |
|
| 133 | 133 | } |
| 134 | 134 | return $this; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - public function addRules(array $rules){ |
|
| 138 | - foreach ($rules as $rule){ |
|
| 137 | + public function addRules(array $rules) { |
|
| 138 | + foreach ($rules as $rule) { |
|
| 139 | 139 | $this->addRule($rule); |
| 140 | 140 | } |
| 141 | 141 | return $this; |
@@ -8,16 +8,16 @@ |
||
| 8 | 8 | class HtmlFormInput extends HtmlFormField { |
| 9 | 9 | use TextFieldsTrait; |
| 10 | 10 | |
| 11 | - public function __construct($identifier, $label=NULL,$type="text",$value=NULL,$placeholder=NULL) { |
|
| 12 | - if(!isset($placeholder) && $type==="text") |
|
| 11 | + public function __construct($identifier, $label=NULL, $type="text", $value=NULL, $placeholder=NULL) { |
|
| 12 | + if (!isset($placeholder) && $type==="text") |
|
| 13 | 13 | $placeholder=$label; |
| 14 | - parent::__construct("field-".$identifier, new HtmlInput($identifier,$type,$value,$placeholder), $label); |
|
| 14 | + parent::__construct("field-".$identifier, new HtmlInput($identifier, $type, $value, $placeholder), $label); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | - public function getDataField(){ |
|
| 18 | - $field= $this->getField(); |
|
| 17 | + public function getDataField() { |
|
| 18 | + $field=$this->getField(); |
|
| 19 | 19 | //TODO check getField |
| 20 | - if($field instanceof HtmlInput) |
|
| 20 | + if ($field instanceof HtmlInput) |
|
| 21 | 21 | $field=$field->getDataField(); |
| 22 | 22 | return $field; |
| 23 | 23 | } |
@@ -9,17 +9,17 @@ discard block |
||
| 9 | 9 | class HtmlFormTextarea extends HtmlFormField { |
| 10 | 10 | use TextFieldsTrait; |
| 11 | 11 | |
| 12 | - public function __construct($identifier, $label=NULL,$value=NULL,$placeholder=NULL,$rows=NULL) { |
|
| 13 | - if(!isset($placeholder)) |
|
| 12 | + public function __construct($identifier, $label=NULL, $value=NULL, $placeholder=NULL, $rows=NULL) { |
|
| 13 | + if (!isset($placeholder)) |
|
| 14 | 14 | $placeholder=$label; |
| 15 | - parent::__construct("field-".$identifier, new HtmlTextarea($identifier,$value,$placeholder,$rows), $label); |
|
| 15 | + parent::__construct("field-".$identifier, new HtmlTextarea($identifier, $value, $placeholder, $rows), $label); |
|
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * Defines the textarea row count |
| 20 | 20 | * @param int $count |
| 21 | 21 | */ |
| 22 | - public function setRows($count){ |
|
| 22 | + public function setRows($count) { |
|
| 23 | 23 | $this->getField()->setRows($count); |
| 24 | 24 | } |
| 25 | 25 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | return $this->content["field"]; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function setName($name){ |
|
| 31 | - $this->getDataField()->setProperty("name",$name); |
|
| 30 | + public function setName($name) { |
|
| 31 | + $this->getDataField()->setProperty("name", $name); |
|
| 32 | 32 | } |
| 33 | 33 | } |
| 34 | 34 | \ No newline at end of file |
@@ -6,19 +6,19 @@ |
||
| 6 | 6 | |
| 7 | 7 | abstract public function getDataField(); |
| 8 | 8 | abstract public function addToProperty($name, $value, $separator=" "); |
| 9 | - public function setPlaceholder($value){ |
|
| 9 | + public function setPlaceholder($value) { |
|
| 10 | 10 | $this->getDataField()->setPlaceholder($value); |
| 11 | 11 | return $this; |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | - public function setValue($value){ |
|
| 14 | + public function setValue($value) { |
|
| 15 | 15 | $this->getDataField()->setValue($value); |
| 16 | 16 | return $this; |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | - public function setInputType($type){ |
|
| 20 | - if($type==="hidden") |
|
| 21 | - $this->addToProperty("style","display:none;"); |
|
| 19 | + public function setInputType($type) { |
|
| 20 | + if ($type==="hidden") |
|
| 21 | + $this->addToProperty("style", "display:none;"); |
|
| 22 | 22 | $this->getDataField()->setInputType($type); |
| 23 | 23 | return $this; |
| 24 | 24 | } |
@@ -11,14 +11,14 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | abstract public function addToProperty($name, $value, $separator=" "); |
| 13 | 13 | abstract public function addLabel($caption, $style="label-default", $leftSeparator=" "); |
| 14 | - abstract public function addContent($content,$before=false); |
|
| 14 | + abstract public function addContent($content, $before=false); |
|
| 15 | 15 | abstract public function getField(); |
| 16 | 16 | public function setFocus() { |
| 17 | 17 | $this->getField()->addToProperty("class", State::FOCUS); |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | public function addLoading() { |
| 21 | - if ($this->_hasIcon === false) { |
|
| 21 | + if ($this->_hasIcon===false) { |
|
| 22 | 22 | throw new \Exception("Input must have an icon for showing a loader, use addIcon before"); |
| 23 | 23 | } |
| 24 | 24 | return $this->addToProperty("class", State::LOADING); |
@@ -26,44 +26,44 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | public function labeled($label, $direction=Direction::LEFT, $icon=NULL) { |
| 28 | 28 | $field=$this->getField(); |
| 29 | - $labelO=$field->addLabel($label,$direction===Direction::LEFT,$icon); |
|
| 30 | - $field->addToProperty("class", $direction . " labeled"); |
|
| 29 | + $labelO=$field->addLabel($label, $direction===Direction::LEFT, $icon); |
|
| 30 | + $field->addToProperty("class", $direction." labeled"); |
|
| 31 | 31 | return $labelO; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | public function labeledToCorner($icon, $direction=Direction::LEFT) { |
| 35 | - return $this->labeled("", $direction . " corner", $icon)->toCorner($direction); |
|
| 35 | + return $this->labeled("", $direction." corner", $icon)->toCorner($direction); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | public function addAction($action, $direction=Direction::RIGHT, $icon=NULL, $labeled=false) { |
| 39 | 39 | $field=$this->getField(); |
| 40 | 40 | $actionO=$action; |
| 41 | - if (\is_object($action) === false) { |
|
| 42 | - $actionO=new HtmlButton("action-" . $this->identifier, $action); |
|
| 41 | + if (\is_object($action)===false) { |
|
| 42 | + $actionO=new HtmlButton("action-".$this->identifier, $action); |
|
| 43 | 43 | if (isset($icon)) |
| 44 | 44 | $actionO->addIcon($icon, true, $labeled); |
| 45 | 45 | } |
| 46 | - $field->addToProperty("class", $direction . " action"); |
|
| 47 | - $field->addContent($actionO, \strstr($direction, Direction::LEFT) !== false); |
|
| 46 | + $field->addToProperty("class", $direction." action"); |
|
| 47 | + $field->addContent($actionO, \strstr($direction, Direction::LEFT)!==false); |
|
| 48 | 48 | return $actionO; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function addDropdown($label="", $items=array(),$direction=Direction::RIGHT){ |
|
| 52 | - $labelO=new HtmlDropdown("dd-".$this->identifier,$label,$items); |
|
| 53 | - $labelO->asSelect("select-".$this->identifier,false,true); |
|
| 54 | - return $this->labeled($labelO,$direction); |
|
| 51 | + public function addDropdown($label="", $items=array(), $direction=Direction::RIGHT) { |
|
| 52 | + $labelO=new HtmlDropdown("dd-".$this->identifier, $label, $items); |
|
| 53 | + $labelO->asSelect("select-".$this->identifier, false, true); |
|
| 54 | + return $this->labeled($labelO, $direction); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | public function setTransparent() { |
| 58 | 58 | return $this->getField()->addToProperty("class", "transparent"); |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - public function setReadonly(){ |
|
| 61 | + public function setReadonly() { |
|
| 62 | 62 | $this->getDataField()->setProperty("readonly", ""); |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - public function setName($name){ |
|
| 66 | - $this->getDataField()->setProperty("name",$name); |
|
| 65 | + public function setName($name) { |
|
| 66 | + $this->getDataField()->setProperty("name", $name); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | } |
| 70 | 70 | \ No newline at end of file |
@@ -31,38 +31,38 @@ discard block |
||
| 31 | 31 | * @param string|HtmlSemDoubleElement $header |
| 32 | 32 | * @return \Ajax\semantic\html\collections\HtmlMessage |
| 33 | 33 | */ |
| 34 | - public function addHeader($header){ |
|
| 34 | + public function addHeader($header) { |
|
| 35 | 35 | $headerO=$header; |
| 36 | - if(\is_string($header)){ |
|
| 37 | - $headerO=new HtmlSemDoubleElement("header-".$this->identifier,"div"); |
|
| 36 | + if (\is_string($header)) { |
|
| 37 | + $headerO=new HtmlSemDoubleElement("header-".$this->identifier, "div"); |
|
| 38 | 38 | $headerO->setClass("header"); |
| 39 | 39 | $headerO->setContent($header); |
| 40 | 40 | } |
| 41 | - return $this->addContent($headerO,true); |
|
| 41 | + return $this->addContent($headerO, true); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - public function addList($elements,$ordered=false){ |
|
| 45 | - $list=new HtmlList("list-".$this->identifier,$elements); |
|
| 44 | + public function addList($elements, $ordered=false) { |
|
| 45 | + $list=new HtmlList("list-".$this->identifier, $elements); |
|
| 46 | 46 | $list->setOrdered($ordered); |
| 47 | 47 | $list->setClass("ui list"); |
| 48 | 48 | $this->addContent($list); |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function setIcon($icon){ |
|
| 51 | + public function setIcon($icon) { |
|
| 52 | 52 | $this->addToProperty("class", "icon"); |
| 53 | - $this->wrapContent("<div class='content'>","</div>"); |
|
| 53 | + $this->wrapContent("<div class='content'>", "</div>"); |
|
| 54 | 54 | $this->icon=new HtmlIcon("icon-".$this->identifier, $icon); |
| 55 | 55 | return $this; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - public function addLoader($loaderIcon="notched circle"){ |
|
| 58 | + public function addLoader($loaderIcon="notched circle") { |
|
| 59 | 59 | $this->setIcon($loaderIcon); |
| 60 | 60 | $this->icon->addToIcon("loading"); |
| 61 | 61 | return $this; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - public function setDismissable($dismiss=true){ |
|
| 65 | - if($dismiss===true) |
|
| 64 | + public function setDismissable($dismiss=true) { |
|
| 65 | + if ($dismiss===true) |
|
| 66 | 66 | $this->close=new HtmlIcon("close-".$this->identifier, "close"); |
| 67 | 67 | else |
| 68 | 68 | $this->close=NULL; |
@@ -73,34 +73,34 @@ discard block |
||
| 73 | 73 | * {@inheritDoc} |
| 74 | 74 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
| 75 | 75 | */ |
| 76 | - public function run(JsUtils $js){ |
|
| 76 | + public function run(JsUtils $js) { |
|
| 77 | 77 | parent::run($js); |
| 78 | - if(isset($this->close)){ |
|
| 78 | + if (isset($this->close)) { |
|
| 79 | 79 | $js->execOn("click", "#".$this->identifier." .close", "$(this).closest('.message').transition('fade')"); |
| 80 | 80 | } |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - public function setState($visible=true){ |
|
| 84 | - $visible=($visible===true)?"visible":"hidden"; |
|
| 85 | - return $this->addToPropertyCtrl("class", $visible, array("visible","hidden")); |
|
| 83 | + public function setState($visible=true) { |
|
| 84 | + $visible=($visible===true) ? "visible" : "hidden"; |
|
| 85 | + return $this->addToPropertyCtrl("class", $visible, array("visible", "hidden")); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - public function setVariation($value="floating"){ |
|
| 89 | - return $this->addToPropertyCtrl("class", $value, array("floating","compact")); |
|
| 88 | + public function setVariation($value="floating") { |
|
| 89 | + return $this->addToPropertyCtrl("class", $value, array("floating", "compact")); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - public function setStyle($style){ |
|
| 92 | + public function setStyle($style) { |
|
| 93 | 93 | return $this->addToPropertyCtrl("class", $style, Style::getConstants()); |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - public function setError(){ |
|
| 96 | + public function setError() { |
|
| 97 | 97 | return $this->setStyle("error"); |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - public function setMessage($message){ |
|
| 101 | - if(\is_array($this->content)){ |
|
| 100 | + public function setMessage($message) { |
|
| 101 | + if (\is_array($this->content)) { |
|
| 102 | 102 | $this->content[\sizeof($this->content)-1]=$message; |
| 103 | - }else |
|
| 103 | + } else |
|
| 104 | 104 | $this->setContent($message); |
| 105 | 105 | } |
| 106 | 106 | } |
| 107 | 107 | \ No newline at end of file |