@@ -6,20 +6,20 @@ discard block |
||
| 6 | 6 | use Ajax\semantic\html\base\HtmlSemCollection; |
| 7 | 7 | use Ajax\semantic\html\base\constants\Sens; |
| 8 | 8 | |
| 9 | -class HtmlSegmentGroups extends HtmlSemCollection{ |
|
| 9 | +class HtmlSegmentGroups extends HtmlSemCollection { |
|
| 10 | 10 | |
| 11 | 11 | |
| 12 | - public function __construct( $identifier, $items=array()){ |
|
| 13 | - parent::__construct( $identifier, "div","ui segments"); |
|
| 12 | + public function __construct($identifier, $items=array()) { |
|
| 13 | + parent::__construct($identifier, "div", "ui segments"); |
|
| 14 | 14 | $this->addItems($items); |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | |
| 18 | - protected function createItem($value){ |
|
| 19 | - return new HtmlSegment("segment-".$this->count(),$value); |
|
| 18 | + protected function createItem($value) { |
|
| 19 | + return new HtmlSegment("segment-".$this->count(), $value); |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - protected function createCondition($value){ |
|
| 22 | + protected function createCondition($value) { |
|
| 23 | 23 | return !($value instanceof HtmlSegment); |
| 24 | 24 | } |
| 25 | 25 | |
@@ -28,16 +28,16 @@ discard block |
||
| 28 | 28 | * @param string $type one of "raised","stacked","piled" default : "" |
| 29 | 29 | * @return \Ajax\semantic\html\elements\HtmlSegmentGroups |
| 30 | 30 | */ |
| 31 | - public function setType($type){ |
|
| 31 | + public function setType($type) { |
|
| 32 | 32 | return $this->addToPropertyCtrl("class", $type, SegmentType::getConstants()); |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - public function setSens($sens=Sens::VERTICAL){ |
|
| 35 | + public function setSens($sens=Sens::VERTICAL) { |
|
| 36 | 36 | return $this->addToPropertyCtrl("class", $sens, Sens::getConstants()); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - public static function group($identifier,$items=array(),$type="",$sens=Sens::VERTICAL){ |
|
| 40 | - $group=new HtmlSegmentGroups($identifier,$items); |
|
| 39 | + public static function group($identifier, $items=array(), $type="", $sens=Sens::VERTICAL) { |
|
| 40 | + $group=new HtmlSegmentGroups($identifier, $items); |
|
| 41 | 41 | $group->setSens($sens); |
| 42 | 42 | return $group->setType($type); |
| 43 | 43 | } |
@@ -13,10 +13,10 @@ discard block |
||
| 13 | 13 | use IconTrait; |
| 14 | 14 | |
| 15 | 15 | public function __construct($identifier, $type="text", $value="", $placeholder="") { |
| 16 | - parent::__construct("div-" . $identifier, "div", "ui input"); |
|
| 17 | - $this->content=[ "field" => new \Ajax\common\html\html5\HtmlInput($identifier, $type, $value, $placeholder) ]; |
|
| 18 | - $this->_states=[ State::DISABLED,State::FOCUS,State::ERROR ]; |
|
| 19 | - $this->_variations=[ Variation::TRANSPARENT ]; |
|
| 16 | + parent::__construct("div-".$identifier, "div", "ui input"); |
|
| 17 | + $this->content=["field" => new \Ajax\common\html\html5\HtmlInput($identifier, $type, $value, $placeholder)]; |
|
| 18 | + $this->_states=[State::DISABLED, State::FOCUS, State::ERROR]; |
|
| 19 | + $this->_variations=[Variation::TRANSPARENT]; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | public function setFocus() { |
@@ -24,38 +24,38 @@ discard block |
||
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | public function addLoading() { |
| 27 | - if ($this->_hasIcon === false) { |
|
| 27 | + if ($this->_hasIcon===false) { |
|
| 28 | 28 | throw new \Exception("Input must have an icon for showing a loader, use addIcon before"); |
| 29 | 29 | } |
| 30 | 30 | return $this->addToProperty("class", State::LOADING); |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | public function labeled($label, $direction=Direction::LEFT, $icon=NULL) { |
| 34 | - $labelO=$this->addLabel($label,$direction===Direction::LEFT,$icon); |
|
| 35 | - $this->addToProperty("class", $direction . " labeled"); |
|
| 34 | + $labelO=$this->addLabel($label, $direction===Direction::LEFT, $icon); |
|
| 35 | + $this->addToProperty("class", $direction." labeled"); |
|
| 36 | 36 | return $labelO; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | public function labeledToCorner($icon, $direction=Direction::LEFT) { |
| 40 | - return $this->labeled("", $direction . " corner", $icon)->toCorner($direction); |
|
| 40 | + return $this->labeled("", $direction." corner", $icon)->toCorner($direction); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | public function addAction($action, $direction=Direction::RIGHT, $icon=NULL, $labeled=false) { |
| 44 | 44 | $actionO=$action; |
| 45 | - if (\is_object($action) === false) { |
|
| 46 | - $actionO=new HtmlButton("action-" . $this->identifier, $action); |
|
| 45 | + if (\is_object($action)===false) { |
|
| 46 | + $actionO=new HtmlButton("action-".$this->identifier, $action); |
|
| 47 | 47 | if (isset($icon)) |
| 48 | 48 | $actionO->addIcon($icon, true, $labeled); |
| 49 | 49 | } |
| 50 | - $this->addToProperty("class", $direction . " action"); |
|
| 51 | - $this->addContent($actionO, \strstr($direction, Direction::LEFT) !== false); |
|
| 50 | + $this->addToProperty("class", $direction." action"); |
|
| 51 | + $this->addContent($actionO, \strstr($direction, Direction::LEFT)!==false); |
|
| 52 | 52 | return $actionO; |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - public function addDropdown($label="", $items=array(),$direction=Direction::RIGHT){ |
|
| 56 | - $labelO=new HtmlDropdown("dd-".$this->identifier,$label,$items); |
|
| 57 | - $labelO->asSelect("select-".$this->identifier,false,true); |
|
| 58 | - return $this->labeled($labelO,$direction); |
|
| 55 | + public function addDropdown($label="", $items=array(), $direction=Direction::RIGHT) { |
|
| 56 | + $labelO=new HtmlDropdown("dd-".$this->identifier, $label, $items); |
|
| 57 | + $labelO->asSelect("select-".$this->identifier, false, true); |
|
| 58 | + return $this->labeled($labelO, $direction); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | public function getField() { |
@@ -44,8 +44,9 @@ |
||
| 44 | 44 | $actionO=$action; |
| 45 | 45 | if (\is_object($action) === false) { |
| 46 | 46 | $actionO=new HtmlButton("action-" . $this->identifier, $action); |
| 47 | - if (isset($icon)) |
|
| 48 | - $actionO->addIcon($icon, true, $labeled); |
|
| 47 | + if (isset($icon)) { |
|
| 48 | + $actionO->addIcon($icon, true, $labeled); |
|
| 49 | + } |
|
| 49 | 50 | } |
| 50 | 51 | $this->addToProperty("class", $direction . " action"); |
| 51 | 52 | $this->addContent($actionO, \strstr($direction, Direction::LEFT) !== false); |
@@ -18,12 +18,12 @@ discard block |
||
| 18 | 18 | * @version 1.001 |
| 19 | 19 | */ |
| 20 | 20 | class HtmlSegment extends HtmlSemDoubleElement { |
| 21 | - use AttachedTrait,TextAlignmentTrait; |
|
| 21 | + use AttachedTrait, TextAlignmentTrait; |
|
| 22 | 22 | |
| 23 | 23 | public function __construct($identifier, $content="") { |
| 24 | 24 | parent::__construct($identifier, "div", "ui segment"); |
| 25 | - $this->_variations=\array_merge($this->_variations, [ Variation::PADDED,Variation::COMPACT ]); |
|
| 26 | - $this->_states=\array_merge($this->_states, [ State::LOADING ]); |
|
| 25 | + $this->_variations=\array_merge($this->_variations, [Variation::PADDED, Variation::COMPACT]); |
|
| 26 | + $this->_states=\array_merge($this->_states, [State::LOADING]); |
|
| 27 | 27 | $this->content=$content; |
| 28 | 28 | } |
| 29 | 29 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | public function setSens($sens="vertical") { |
| 40 | - return $this->addToPropertyCtrl("class", $sens, array ("vertical","horizontal" )); |
|
| 40 | + return $this->addToPropertyCtrl("class", $sens, array("vertical", "horizontal")); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | public function setEmphasis($value=Emphasis::SECONDARY) { |
@@ -61,11 +61,11 @@ discard block |
||
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | public function asContainer() { |
| 64 | - return $this->addToPropertyCtrl("class", "container", array ("container" )); |
|
| 64 | + return $this->addToPropertyCtrl("class", "container", array("container")); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - public function addGrid($numRows=1, $numCols=NULL){ |
|
| 68 | - $grid=new HtmlGrid("Grid-".$this->identifier,$numRows,$numCols); |
|
| 67 | + public function addGrid($numRows=1, $numCols=NULL) { |
|
| 68 | + $grid=new HtmlGrid("Grid-".$this->identifier, $numRows, $numCols); |
|
| 69 | 69 | $this->content=$grid; |
| 70 | 70 | return $grid; |
| 71 | 71 | } |
@@ -12,8 +12,9 @@ discard block |
||
| 12 | 12 | $image=new HtmlImg("img-", $src, $alt); |
| 13 | 13 | $image->setClass(""); |
| 14 | 14 | parent::__construct($identifier, "div", "ui image", $image); |
| 15 | - if (isset($size)) |
|
| 16 | - $this->setSize($size); |
|
| 15 | + if (isset($size)) { |
|
| 16 | + $this->setSize($size); |
|
| 17 | + } |
|
| 17 | 18 | } |
| 18 | 19 | |
| 19 | 20 | public function setCircular() { |
@@ -21,8 +22,9 @@ discard block |
||
| 21 | 22 | } |
| 22 | 23 | |
| 23 | 24 | public function asAvatar($caption=NULL) { |
| 24 | - if (isset($caption)) |
|
| 25 | - $this->wrap("", $caption); |
|
| 25 | + if (isset($caption)) { |
|
| 26 | + $this->wrap("", $caption); |
|
| 27 | + } |
|
| 26 | 28 | return $this->addToProperty("class", "avatar"); |
| 27 | 29 | } |
| 28 | 30 | |
@@ -15,9 +15,9 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | class HtmlLabelGroups extends HtmlSemCollection { |
| 17 | 17 | |
| 18 | - public function __construct($identifier,$labels=array(), $attributes=array()) { |
|
| 18 | + public function __construct($identifier, $labels=array(), $attributes=array()) { |
|
| 19 | 19 | parent::__construct($identifier, "div", "ui labels"); |
| 20 | - $this->_states=\array_merge(Size::getConstants(),Color::getConstants(),["tag","circular"]); |
|
| 20 | + $this->_states=\array_merge(Size::getConstants(), Color::getConstants(), ["tag", "circular"]); |
|
| 21 | 21 | $this->addItems($labels); |
| 22 | 22 | $this->setStates($attributes); |
| 23 | 23 | } |
@@ -31,12 +31,12 @@ discard block |
||
| 31 | 31 | $icon=JArray::getValue($value, "icon", 1); |
| 32 | 32 | $tagName=JArray::getValue($value, "tagName", 2); |
| 33 | 33 | } |
| 34 | - $labelO=new HtmlLabel("label-" . $this->identifier, $caption,$icon,$tagName); |
|
| 34 | + $labelO=new HtmlLabel("label-".$this->identifier, $caption, $icon, $tagName); |
|
| 35 | 35 | return $labelO; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | protected function createCondition($value) { |
| 39 | - return ($value instanceof HtmlLabel) === false; |
|
| 39 | + return ($value instanceof HtmlLabel)===false; |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | } |
| 43 | 43 | \ No newline at end of file |
@@ -14,8 +14,9 @@ |
||
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | public function asAvatar($caption=NULL) { |
| 17 | - if (isset($caption)) |
|
| 18 | - $this->wrap("", $caption); |
|
| 17 | + if (isset($caption)) { |
|
| 18 | + $this->wrap("", $caption); |
|
| 19 | + } |
|
| 19 | 20 | return $this->addToProperty("class", "avatar"); |
| 20 | 21 | } |
| 21 | 22 | } |
| 22 | 23 | \ No newline at end of file |
@@ -21,13 +21,13 @@ |
||
| 21 | 21 | * @see \Ajax\bootstrap\html\base\HtmlSingleElement::run() |
| 22 | 22 | */ |
| 23 | 23 | public function run(JsUtils $js) { |
| 24 | - $this->_bsComponent=$js->semantic()->generic("#" . $this->identifier); |
|
| 24 | + $this->_bsComponent=$js->semantic()->generic("#".$this->identifier); |
|
| 25 | 25 | $this->addEventsOnRun($js); |
| 26 | 26 | return $this->_bsComponent; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | public function addIcon($icon, $before=true) { |
| 30 | - return $this->addContent(new HtmlIcon("icon-" . $this->identifier, $icon), $before); |
|
| 30 | + return $this->addContent(new HtmlIcon("icon-".$this->identifier, $icon), $before); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | public static function icon($identifier, $icon, $href="#", $label=NULL) { |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | * @return \Ajax\semantic\html\elements\HtmlDivider |
| 23 | 23 | */ |
| 24 | 24 | public function setVertical() { |
| 25 | - return $this->addToPropertyCtrl("class", "vertical", array ("vertical","horizontal" )); |
|
| 25 | + return $this->addToPropertyCtrl("class", "vertical", array("vertical", "horizontal")); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | /** |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | * @return \Ajax\semantic\html\elements\HtmlDivider |
| 31 | 31 | */ |
| 32 | 32 | public function setHorizontal() { |
| 33 | - return $this->addToPropertyCtrl("class", "horizontal", array ("vertical","horizontal" )); |
|
| 33 | + return $this->addToPropertyCtrl("class", "horizontal", array("vertical", "horizontal")); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @return \Ajax\semantic\html\HtmlIcon |
| 69 | 69 | */ |
| 70 | 70 | public function setFlipped($sens="horizontally") { |
| 71 | - return $this->addToProperty("class", "flipped " . $sens); |
|
| 71 | + return $this->addToProperty("class", "flipped ".$sens); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | /** |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * @return \Ajax\semantic\html\HtmlIcon |
| 78 | 78 | */ |
| 79 | 79 | public function setRotated($sens="clockwise") { |
| 80 | - return $this->addToProperty("class", "rotated " . $sens); |
|
| 80 | + return $this->addToProperty("class", "rotated ".$sens); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | public function asLink($href=NULL) { |
| 88 | 88 | if (isset($href)) { |
| 89 | - $this->wrap("<a href='" . $href . "'>", "</a>"); |
|
| 89 | + $this->wrap("<a href='".$href."'>", "</a>"); |
|
| 90 | 90 | } |
| 91 | 91 | return $this->addToProperty("class", "link"); |
| 92 | 92 | } |
@@ -102,9 +102,9 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | public function setBordered($inverted=false) { |
| 104 | 104 | $invertedStr=""; |
| 105 | - if ($inverted !== false) |
|
| 105 | + if ($inverted!==false) |
|
| 106 | 106 | $invertedStr=" inverted"; |
| 107 | - return $this->addToProperty("class", "bordered" . $invertedStr); |
|
| 107 | + return $this->addToProperty("class", "bordered".$invertedStr); |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | /** |
@@ -116,11 +116,11 @@ discard block |
||
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | public function addLabel($label, $before=false, $icon=NULL) { |
| 119 | - if($before) |
|
| 119 | + if ($before) |
|
| 120 | 120 | $this->wrap($label); |
| 121 | 121 | else |
| 122 | 122 | $this->wrap("", $label); |
| 123 | - if(isset($icon)) |
|
| 123 | + if (isset($icon)) |
|
| 124 | 124 | $this->addToIcon($icon); |
| 125 | 125 | return $this; |
| 126 | 126 | } |
@@ -102,8 +102,9 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | public function setBordered($inverted=false) { |
| 104 | 104 | $invertedStr=""; |
| 105 | - if ($inverted !== false) |
|
| 106 | - $invertedStr=" inverted"; |
|
| 105 | + if ($inverted !== false) { |
|
| 106 | + $invertedStr=" inverted"; |
|
| 107 | + } |
|
| 107 | 108 | return $this->addToProperty("class", "bordered" . $invertedStr); |
| 108 | 109 | } |
| 109 | 110 | |
@@ -116,12 +117,14 @@ discard block |
||
| 116 | 117 | } |
| 117 | 118 | |
| 118 | 119 | public function addLabel($label, $before=false, $icon=NULL) { |
| 119 | - if($before) |
|
| 120 | - $this->wrap($label); |
|
| 121 | - else |
|
| 122 | - $this->wrap("", $label); |
|
| 123 | - if(isset($icon)) |
|
| 124 | - $this->addToIcon($icon); |
|
| 120 | + if($before) { |
|
| 121 | + $this->wrap($label); |
|
| 122 | + } else { |
|
| 123 | + $this->wrap("", $label); |
|
| 124 | + } |
|
| 125 | + if(isset($icon)) { |
|
| 126 | + $this->addToIcon($icon); |
|
| 127 | + } |
|
| 125 | 128 | return $this; |
| 126 | 129 | } |
| 127 | 130 | |