@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | * @param int $max |
| 14 | 14 | * @param string $icon star or heart |
| 15 | 15 | */ |
| 16 | - public function __construct($identifier, $value,$max=5,$icon="") { |
|
| 16 | + public function __construct($identifier, $value, $max=5, $icon="") { |
|
| 17 | 17 | parent::__construct($identifier, "div", "ui {$icon} rating"); |
| 18 | 18 | $this->setValue($value); |
| 19 | 19 | $this->setMax($max); |
@@ -23,11 +23,11 @@ discard block |
||
| 23 | 23 | * {@inheritDoc} |
| 24 | 24 | * @see \Ajax\common\html\HtmlDoubleElement::setValue() |
| 25 | 25 | */ |
| 26 | - public function setValue($value){ |
|
| 26 | + public function setValue($value) { |
|
| 27 | 27 | $this->setProperty("data-rating", $value); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function setMax($max){ |
|
| 30 | + public function setMax($max) { |
|
| 31 | 31 | $this->setProperty("data-max-rating", $max); |
| 32 | 32 | } |
| 33 | 33 | |
@@ -35,20 +35,20 @@ discard block |
||
| 35 | 35 | * {@inheritDoc} |
| 36 | 36 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
| 37 | 37 | */ |
| 38 | - public function run(JsUtils $js){ |
|
| 38 | + public function run(JsUtils $js) { |
|
| 39 | 39 | parent::run($js); |
| 40 | - return $js->semantic()->rating("#".$this->identifier,$this->_params); |
|
| 40 | + return $js->semantic()->rating("#".$this->identifier, $this->_params); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - public function asStar(){ |
|
| 43 | + public function asStar() { |
|
| 44 | 44 | return $this->setIcon(); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - public function asHeart(){ |
|
| 47 | + public function asHeart() { |
|
| 48 | 48 | return $this->setIcon("heart"); |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function setIcon($icon="star"){ |
|
| 52 | - return $this->addToPropertyCtrl("class", $icon, ["star","heart",""]); |
|
| 51 | + public function setIcon($icon="star") { |
|
| 52 | + return $this->addToPropertyCtrl("class", $icon, ["star", "heart", ""]); |
|
| 53 | 53 | } |
| 54 | 54 | } |
| 55 | 55 | \ No newline at end of file |
@@ -26,8 +26,9 @@ discard block |
||
| 26 | 26 | public function asIcon($icon, $title, $subHeader=NULL) { |
| 27 | 27 | $header=new HtmlHeader("header-" . $this->identifier); |
| 28 | 28 | $header->asIcon($icon, $title, $subHeader); |
| 29 | - if ($this->_inverted === false) |
|
| 30 | - $header->setInverted(); |
|
| 29 | + if ($this->_inverted === false) { |
|
| 30 | + $header->setInverted(); |
|
| 31 | + } |
|
| 31 | 32 | return $this->setContent($header); |
| 32 | 33 | } |
| 33 | 34 | |
@@ -42,14 +43,16 @@ discard block |
||
| 42 | 43 | } |
| 43 | 44 | |
| 44 | 45 | public function run(JsUtils $js) { |
| 45 | - if ($this->_container instanceof HtmlSingleElement) |
|
| 46 | - $this->_bsComponent=$js->semantic()->dimmer("#" . $this->_container->getIdentifier(), $this->_params); |
|
| 46 | + if ($this->_container instanceof HtmlSingleElement) { |
|
| 47 | + $this->_bsComponent=$js->semantic()->dimmer("#" . $this->_container->getIdentifier(), $this->_params); |
|
| 48 | + } |
|
| 47 | 49 | return parent::run($js); |
| 48 | 50 | } |
| 49 | 51 | |
| 50 | 52 | public function jsShow() { |
| 51 | - if (isset($this->_container) === true) |
|
| 52 | - return '$("#.' . $this->_container->getIdentifier() . ').dimmer("show");'; |
|
| 53 | + if (isset($this->_container) === true) { |
|
| 54 | + return '$("#.' . $this->_container->getIdentifier() . ').dimmer("show");'; |
|
| 55 | + } |
|
| 53 | 56 | } |
| 54 | 57 | |
| 55 | 58 | public function setBlurring() { |
@@ -18,14 +18,14 @@ discard block |
||
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | public function setContent($content) { |
| 21 | - $this->content=new HtmlSemDoubleElement("content-" . $this->identifier, "div", "content", new HtmlSemDoubleElement("", "div", "center", $content)); |
|
| 21 | + $this->content=new HtmlSemDoubleElement("content-".$this->identifier, "div", "content", new HtmlSemDoubleElement("", "div", "center", $content)); |
|
| 22 | 22 | return $this; |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public function asIcon($icon, $title, $subHeader=NULL) { |
| 26 | - $header=new HtmlHeader("header-" . $this->identifier); |
|
| 26 | + $header=new HtmlHeader("header-".$this->identifier); |
|
| 27 | 27 | $header->asIcon($icon, $title, $subHeader); |
| 28 | - if ($this->_inverted === false) |
|
| 28 | + if ($this->_inverted===false) |
|
| 29 | 29 | $header->setInverted(); |
| 30 | 30 | return $this->setContent($header); |
| 31 | 31 | } |
@@ -42,13 +42,13 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | public function run(JsUtils $js) { |
| 44 | 44 | if ($this->_container instanceof HtmlSingleElement) |
| 45 | - $this->_bsComponent=$js->semantic()->dimmer("#" . $this->_container->getIdentifier(), $this->_params); |
|
| 45 | + $this->_bsComponent=$js->semantic()->dimmer("#".$this->_container->getIdentifier(), $this->_params); |
|
| 46 | 46 | return parent::run($js); |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | public function jsShow() { |
| 50 | - if (isset($this->_container) === true) |
|
| 51 | - return '$("#.' . $this->_container->getIdentifier() . ').dimmer("show");'; |
|
| 50 | + if (isset($this->_container)===true) |
|
| 51 | + return '$("#.'.$this->_container->getIdentifier().').dimmer("show");'; |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | public function setBlurring() { |
@@ -8,13 +8,13 @@ discard block |
||
| 8 | 8 | class HtmlSticky extends HtmlSemDoubleElement { |
| 9 | 9 | private $_params=array(); |
| 10 | 10 | |
| 11 | - public function __construct($identifier,$context=NULL,$content=NULL) { |
|
| 11 | + public function __construct($identifier, $context=NULL, $content=NULL) { |
|
| 12 | 12 | parent::__construct($identifier, "div", "ui sticky", $content); |
| 13 | - if(isset($content)) |
|
| 13 | + if (isset($content)) |
|
| 14 | 14 | $this->setContext($context); |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | - public function setContext($context){ |
|
| 17 | + public function setContext($context) { |
|
| 18 | 18 | $this->_params["context"]=$context; |
| 19 | 19 | return $this; |
| 20 | 20 | } |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | * {@inheritDoc} |
| 24 | 24 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
| 25 | 25 | */ |
| 26 | - public function run(JsUtils $js){ |
|
| 26 | + public function run(JsUtils $js) { |
|
| 27 | 27 | parent::run($js); |
| 28 | - return $js->semantic()->sticky("#".$this->identifier,$this->_params); |
|
| 28 | + return $js->semantic()->sticky("#".$this->identifier, $this->_params); |
|
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | \ No newline at end of file |
@@ -10,8 +10,9 @@ |
||
| 10 | 10 | |
| 11 | 11 | public function __construct($identifier,$context=NULL,$content=NULL) { |
| 12 | 12 | parent::__construct($identifier, "div", "ui sticky", $content); |
| 13 | - if(isset($content)) |
|
| 14 | - $this->setContext($context); |
|
| 13 | + if(isset($content)) { |
|
| 14 | + $this->setContext($context); |
|
| 15 | + } |
|
| 15 | 16 | } |
| 16 | 17 | |
| 17 | 18 | public function setContext($context){ |
@@ -22,10 +22,12 @@ |
||
| 22 | 22 | |
| 23 | 23 | private function createField($placeholder=NULL, $icon=NULL) { |
| 24 | 24 | $field=new HtmlInput($this->identifier); |
| 25 | - if (isset($placeholder) === true) |
|
| 26 | - $field->setPlaceholder($placeholder); |
|
| 27 | - if (isset($icon) === true) |
|
| 28 | - $field->addIcon($icon, Direction::RIGHT); |
|
| 25 | + if (isset($placeholder) === true) { |
|
| 26 | + $field->setPlaceholder($placeholder); |
|
| 27 | + } |
|
| 28 | + if (isset($icon) === true) { |
|
| 29 | + $field->addIcon($icon, Direction::RIGHT); |
|
| 30 | + } |
|
| 29 | 31 | $field->getField()->setClass("prompt"); |
| 30 | 32 | $this->content["field"]=$field; |
| 31 | 33 | return $field; |
@@ -8,12 +8,12 @@ discard block |
||
| 8 | 8 | use Ajax\semantic\html\base\constants\Direction; |
| 9 | 9 | |
| 10 | 10 | class HtmlSearch extends HtmlSemDoubleElement { |
| 11 | - private $_elements=array (); |
|
| 12 | - private $_searchFields=array ("title" ); |
|
| 11 | + private $_elements=array(); |
|
| 12 | + private $_searchFields=array("title"); |
|
| 13 | 13 | private $_local=false; |
| 14 | 14 | |
| 15 | 15 | public function __construct($identifier, $placeholder=NULL, $icon=NULL) { |
| 16 | - parent::__construct("search-" . $identifier, "div", "ui search", array ()); |
|
| 16 | + parent::__construct("search-".$identifier, "div", "ui search", array()); |
|
| 17 | 17 | $this->createField($placeholder, $icon); |
| 18 | 18 | $this->createResult(); |
| 19 | 19 | $this->_params["type"]="standard"; |
@@ -21,9 +21,9 @@ discard block |
||
| 21 | 21 | |
| 22 | 22 | private function createField($placeholder=NULL, $icon=NULL) { |
| 23 | 23 | $field=new HtmlInput($this->identifier); |
| 24 | - if (isset($placeholder) === true) |
|
| 24 | + if (isset($placeholder)===true) |
|
| 25 | 25 | $field->setPlaceholder($placeholder); |
| 26 | - if (isset($icon) === true) |
|
| 26 | + if (isset($icon)===true) |
|
| 27 | 27 | $field->addIcon($icon, Direction::RIGHT); |
| 28 | 28 | $field->getField()->setClass("prompt"); |
| 29 | 29 | $this->content["field"]=$field; |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | private function createResult() { |
| 34 | - $this->content["result"]=new HtmlSemDoubleElement("results-" . $this->identifier, "div", "results"); |
|
| 34 | + $this->content["result"]=new HtmlSemDoubleElement("results-".$this->identifier, "div", "results"); |
|
| 35 | 35 | return $this->content["result"]; |
| 36 | 36 | } |
| 37 | 37 | |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | public function setUrl($url) { |
| 51 | - $this->_params["apiSettings"]="%{url: %quote%" . $url . "%quote%}%"; |
|
| 51 | + $this->_params["apiSettings"]="%{url: %quote%".$url."%quote%}%"; |
|
| 52 | 52 | return $this; |
| 53 | 53 | } |
| 54 | 54 | |
@@ -71,16 +71,16 @@ discard block |
||
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | public function run(JsUtils $js) { |
| 74 | - $this->_params["onSelect"]='%function(result,response){$(%quote%#' . $this->identifier . '%quote%).trigger(%quote%onSelect%quote%, {%quote%result%quote%: result, %quote%response%quote%:response} );}%'; |
|
| 74 | + $this->_params["onSelect"]='%function(result,response){$(%quote%#'.$this->identifier.'%quote%).trigger(%quote%onSelect%quote%, {%quote%result%quote%: result, %quote%response%quote%:response} );}%'; |
|
| 75 | 75 | $searchFields=\json_encode($this->_searchFields); |
| 76 | 76 | $searchFields=str_ireplace("\"", "%quote%", $searchFields); |
| 77 | - $this->_params["searchFields"]="%" . $searchFields . "%"; |
|
| 78 | - if ($this->_local === true) { |
|
| 77 | + $this->_params["searchFields"]="%".$searchFields."%"; |
|
| 78 | + if ($this->_local===true) { |
|
| 79 | 79 | $this->_params["source"]="%content%"; |
| 80 | - $this->addEvent("beforeExecute", "var content=" . $this->resultsToJson() . ";"); |
|
| 80 | + $this->addEvent("beforeExecute", "var content=".$this->resultsToJson().";"); |
|
| 81 | 81 | } |
| 82 | - if (isset($this->_bsComponent) === false) { |
|
| 83 | - $this->_bsComponent=$js->semantic()->search("#" . $this->identifier, $this->_params); |
|
| 82 | + if (isset($this->_bsComponent)===false) { |
|
| 83 | + $this->_bsComponent=$js->semantic()->search("#".$this->identifier, $this->_params); |
|
| 84 | 84 | } |
| 85 | 85 | $this->addEventsOnRun($js); |
| 86 | 86 | return $this->_bsComponent; |
@@ -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 | } |
@@ -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 |