@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | use Ajax\semantic\html\base\constants\Wide; |
| 12 | 12 | |
| 13 | 13 | class HtmlTD extends HtmlSemDoubleElement { |
| 14 | - use TextAlignmentTrait,TableElementTrait; |
|
| 14 | + use TextAlignmentTrait, TableElementTrait; |
|
| 15 | 15 | private $_container; |
| 16 | 16 | private $_row; |
| 17 | 17 | private $_col; |
@@ -26,8 +26,8 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | public function __construct($identifier, $content=NULL, $tagName="td") { |
| 28 | 28 | parent::__construct($identifier, $tagName, "", $content); |
| 29 | - $this->_variations=[ Variation::COLLAPSING ]; |
|
| 30 | - $this->_states=[ State::ACTIVE,State::POSITIVE,State::NEGATIVE,State::WARNING,State::ERROR,State::DISABLED ]; |
|
| 29 | + $this->_variations=[Variation::COLLAPSING]; |
|
| 30 | + $this->_states=[State::ACTIVE, State::POSITIVE, State::NEGATIVE, State::WARNING, State::ERROR, State::DISABLED]; |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | public function setContainer($container, $row, $col) { |
@@ -47,8 +47,8 @@ discard block |
||
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | public function setRowspan($rowspan) { |
| 50 | - $to=min($this->_container->count(), $this->_row + $rowspan - 1); |
|
| 51 | - for($i=$to; $i > $this->_row; $i--) { |
|
| 50 | + $to=min($this->_container->count(), $this->_row+$rowspan-1); |
|
| 51 | + for ($i=$to; $i>$this->_row; $i--) { |
|
| 52 | 52 | $this->_container->delete($i, $this->_col); |
| 53 | 53 | } |
| 54 | 54 | $this->setProperty("rowspan", $rowspan); |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | public function mergeRow() { |
| 59 | - if(!$this->_rowMerged){ |
|
| 59 | + if (!$this->_rowMerged) { |
|
| 60 | 60 | $this->_rowMerged=true; |
| 61 | 61 | return $this->setRowspan($this->_container->count()); |
| 62 | 62 | } |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | public function mergeCol() { |
| 67 | - if(!$this->_colMerged){ |
|
| 67 | + if (!$this->_colMerged) { |
|
| 68 | 68 | $this->_colMerged=true; |
| 69 | 69 | return $this->setColspan($this->_container->getRow($this->_row)->count()); |
| 70 | 70 | } |
@@ -72,9 +72,9 @@ discard block |
||
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | public function setColspan($colspan) { |
| 75 | - $to=min($this->_container->getRow($this->_row)->count(), $this->_col + $colspan - 1); |
|
| 76 | - for($i=$to; $i > $this->_col; $i--) { |
|
| 77 | - $this->_container->delete($this->_row, $this->_col + 1); |
|
| 75 | + $to=min($this->_container->getRow($this->_row)->count(), $this->_col+$colspan-1); |
|
| 76 | + for ($i=$to; $i>$this->_col; $i--) { |
|
| 77 | + $this->_container->delete($this->_row, $this->_col+1); |
|
| 78 | 78 | } |
| 79 | 79 | $this->setProperty("colspan", $colspan); |
| 80 | 80 | return $this->_container; |
@@ -113,11 +113,11 @@ discard block |
||
| 113 | 113 | return $this->addToProperty("class", "selectable"); |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - public function setWidth($width){ |
|
| 116 | + public function setWidth($width) { |
|
| 117 | 117 | if (\is_int($width)) { |
| 118 | - $width=Wide::getConstants()["W" . $width]; |
|
| 118 | + $width=Wide::getConstants()["W".$width]; |
|
| 119 | 119 | } |
| 120 | 120 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 121 | - return $this->addToPropertyCtrl("class", "wide", array ("wide" )); |
|
| 121 | + return $this->addToPropertyCtrl("class", "wide", array("wide")); |
|
| 122 | 122 | } |
| 123 | 123 | } |
@@ -8,52 +8,52 @@ |
||
| 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)){ |
|
| 15 | - if(JArray::isAssociative($content)===false){ |
|
| 13 | + protected function initContent($content) { |
|
| 14 | + if (\is_array($content)) { |
|
| 15 | + if (JArray::isAssociative($content)===false) { |
|
| 16 | 16 | $icon=@$content[0]; |
| 17 | 17 | $title=@$content[1]; |
| 18 | 18 | $desc=@$content[2]; |
| 19 | 19 | $status=@$content[3]; |
| 20 | - }else{ |
|
| 20 | + } else { |
|
| 21 | 21 | $icon=@$content["icon"]; |
| 22 | 22 | $title=@$content["title"]; |
| 23 | 23 | $desc=@$content["description"]; |
| 24 | 24 | $status=@$content["status"]; |
| 25 | 25 | } |
| 26 | - if(isset($icon)){ |
|
| 26 | + if (isset($icon)) { |
|
| 27 | 27 | $this->setIcon($icon); |
| 28 | 28 | } |
| 29 | - if(isset($status)){ |
|
| 29 | + if (isset($status)) { |
|
| 30 | 30 | $this->setStatus($status); |
| 31 | 31 | } |
| 32 | - if(isset($title)){ |
|
| 33 | - $this->setTitle($title,$desc); |
|
| 32 | + if (isset($title)) { |
|
| 33 | + $this->setTitle($title, $desc); |
|
| 34 | 34 | } |
| 35 | - }else{ |
|
| 35 | + } else { |
|
| 36 | 36 | $this->setContent($content); |
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - public function setActive($value=true){ |
|
| 41 | - if($value) |
|
| 40 | + public function setActive($value=true) { |
|
| 41 | + if ($value) |
|
| 42 | 42 | $this->setStatus(StepStatus::ACTIVE); |
| 43 | 43 | else |
| 44 | 44 | $this->setStatus(StepStatus::NONE); |
| 45 | 45 | return $this; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - public function setCompleted(){ |
|
| 48 | + public function setCompleted() { |
|
| 49 | 49 | return $this->setStatus(StepStatus::COMPLETED); |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - public function setStatus($status){ |
|
| 52 | + public function setStatus($status) { |
|
| 53 | 53 | return $this->addToPropertyCtrl("class", $status, StepStatus::getConstants()); |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - public function removeStatus(){ |
|
| 56 | + public function removeStatus() { |
|
| 57 | 57 | $this->removePropertyValues("class", StepStatus::getConstants()); |
| 58 | 58 | } |
| 59 | 59 | } |
@@ -16,24 +16,24 @@ discard block |
||
| 16 | 16 | * @author jc |
| 17 | 17 | * @version 1.001 |
| 18 | 18 | */ |
| 19 | -class HtmlGridRow extends HtmlSemCollection{ |
|
| 19 | +class HtmlGridRow extends HtmlSemCollection { |
|
| 20 | 20 | use TextAlignmentTrait; |
| 21 | 21 | |
| 22 | 22 | private $_colSize; |
| 23 | 23 | private $_implicite=false; |
| 24 | 24 | |
| 25 | - public function __construct( $identifier,$numCols=NULL,$colSizing=false,$implicite=false){ |
|
| 26 | - parent::__construct( $identifier,"div","row"); |
|
| 25 | + public function __construct($identifier, $numCols=NULL, $colSizing=false, $implicite=false) { |
|
| 26 | + parent::__construct($identifier, "div", "row"); |
|
| 27 | 27 | $this->_implicite=$implicite; |
| 28 | 28 | $width=null; |
| 29 | - if(isset($numCols)){ |
|
| 30 | - $numCols=min(16,$numCols); |
|
| 31 | - $numCols=max(1,$numCols); |
|
| 32 | - if($colSizing) |
|
| 29 | + if (isset($numCols)) { |
|
| 30 | + $numCols=min(16, $numCols); |
|
| 31 | + $numCols=max(1, $numCols); |
|
| 32 | + if ($colSizing) |
|
| 33 | 33 | $width=(int)(16/$numCols); |
| 34 | 34 | else |
| 35 | 35 | $this->_colSize=16/$numCols; |
| 36 | - for ($i=0;$i<$numCols;$i++){ |
|
| 36 | + for ($i=0; $i<$numCols; $i++) { |
|
| 37 | 37 | $this->addItem($width); |
| 38 | 38 | } |
| 39 | 39 | } |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | * @param int $width |
| 45 | 45 | * @return \Ajax\semantic\html\content\HtmlGridRow |
| 46 | 46 | */ |
| 47 | - public function setWidth($width){ |
|
| 48 | - if(\is_int($width)){ |
|
| 47 | + public function setWidth($width) { |
|
| 48 | + if (\is_int($width)) { |
|
| 49 | 49 | $width=Wide::getConstants()["W".$width]; |
| 50 | 50 | } |
| 51 | 51 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 52 | - return $this->addToPropertyCtrl("class", "column",array("column")); |
|
| 52 | + return $this->addToPropertyCtrl("class", "column", array("column")); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -57,29 +57,29 @@ discard block |
||
| 57 | 57 | * @param int $index |
| 58 | 58 | * @return \Ajax\semantic\html\collections\HtmlGridCol |
| 59 | 59 | */ |
| 60 | - public function getCol($index){ |
|
| 60 | + public function getCol($index) { |
|
| 61 | 61 | return $this->getItem($index); |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - public function setColsCount($colsCount,$toCreate=true){ |
|
| 64 | + public function setColsCount($colsCount, $toCreate=true) { |
|
| 65 | 65 | $this->setWidth($colsCount); |
| 66 | - if($toCreate===true){ |
|
| 66 | + if ($toCreate===true) { |
|
| 67 | 67 | $count=$this->count(); |
| 68 | - for($i=$count;$i<$colsCount;$i++){ |
|
| 68 | + for ($i=$count; $i<$colsCount; $i++) { |
|
| 69 | 69 | $this->addItem(null); |
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | 72 | return $this; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - public function addCols($colCount){ |
|
| 76 | - for($i=0;$i<$colCount;$i++){ |
|
| 75 | + public function addCols($colCount) { |
|
| 76 | + for ($i=0; $i<$colCount; $i++) { |
|
| 77 | 77 | $this->addItem(null); |
| 78 | 78 | } |
| 79 | 79 | return $this; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - public function addCol($width=NULL){ |
|
| 82 | + public function addCol($width=NULL) { |
|
| 83 | 83 | return $this->addItem($width); |
| 84 | 84 | } |
| 85 | 85 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * stretch the row contents to take up the entire column height |
| 88 | 88 | * @return \Ajax\semantic\html\content\HtmlGridRow |
| 89 | 89 | */ |
| 90 | - public function setStretched(){ |
|
| 90 | + public function setStretched() { |
|
| 91 | 91 | return $this->addToProperty("class", "stretched"); |
| 92 | 92 | } |
| 93 | 93 | |
@@ -95,20 +95,20 @@ discard block |
||
| 95 | 95 | * @param string $color |
| 96 | 96 | * @return \Ajax\semantic\html\content\HtmlGridRow |
| 97 | 97 | */ |
| 98 | - public function setColor($color){ |
|
| 99 | - return $this->addToPropertyCtrl("class", $color,Color::getConstants()); |
|
| 98 | + public function setColor($color) { |
|
| 99 | + return $this->addToPropertyCtrl("class", $color, Color::getConstants()); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - public function setValues($values,$force=false){ |
|
| 102 | + public function setValues($values, $force=false) { |
|
| 103 | 103 | $count=$this->count(); |
| 104 | 104 | $valuesSize=\sizeof($values); |
| 105 | - if($force===true){ |
|
| 106 | - for($i=$count;$i<$valuesSize;$i++){ |
|
| 107 | - $this->addItem(new HtmlGridCol($this->identifier."-col-".($this->count()+1),null)); |
|
| 105 | + if ($force===true) { |
|
| 106 | + for ($i=$count; $i<$valuesSize; $i++) { |
|
| 107 | + $this->addItem(new HtmlGridCol($this->identifier."-col-".($this->count()+1), null)); |
|
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | - $count=\min(array($this->count(),$valuesSize)); |
|
| 111 | - for($i=0;$i<$count;$i++){ |
|
| 110 | + $count=\min(array($this->count(), $valuesSize)); |
|
| 111 | + for ($i=0; $i<$count; $i++) { |
|
| 112 | 112 | $this->content[$i]->setValue($values[$i]); |
| 113 | 113 | } |
| 114 | 114 | return $this; |
@@ -118,15 +118,15 @@ discard block |
||
| 118 | 118 | * {@inheritDoc} |
| 119 | 119 | * @see \Ajax\common\html\HtmlCollection::createItem() |
| 120 | 120 | */ |
| 121 | - protected function createItem($value){ |
|
| 122 | - $col=new HtmlGridCol($this->identifier."-col-".($this->count()+1),$value); |
|
| 121 | + protected function createItem($value) { |
|
| 122 | + $col=new HtmlGridCol($this->identifier."-col-".($this->count()+1), $value); |
|
| 123 | 123 | return $col; |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
| 127 | - if($this->_implicite===true){ |
|
| 126 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
| 127 | + if ($this->_implicite===true) { |
|
| 128 | 128 | $this->_template="%wrapContentBefore%%content%%wrapContentAfter%"; |
| 129 | 129 | } |
| 130 | - return parent::compile($js,$view); |
|
| 130 | + return parent::compile($js, $view); |
|
| 131 | 131 | } |
| 132 | 132 | } |
@@ -9,15 +9,15 @@ discard block |
||
| 9 | 9 | protected $image; |
| 10 | 10 | |
| 11 | 11 | public function __construct($identifier, $content=NULL) { |
| 12 | - parent::__construct($identifier,"item",$content); |
|
| 12 | + parent::__construct($identifier, "item", $content); |
|
| 13 | 13 | } |
| 14 | - protected function initContent($content){ |
|
| 15 | - if(\is_array($content)){ |
|
| 16 | - if(JArray::isAssociative($content)===false){ |
|
| 14 | + protected function initContent($content) { |
|
| 15 | + if (\is_array($content)) { |
|
| 16 | + if (JArray::isAssociative($content)===false) { |
|
| 17 | 17 | $icon=@$content[0]; |
| 18 | 18 | $title=@$content[1]; |
| 19 | 19 | $desc=@$content[2]; |
| 20 | - }else{ |
|
| 20 | + } else { |
|
| 21 | 21 | $icon=@$content["icon"]; |
| 22 | 22 | $image=@$content["image"]; |
| 23 | 23 | $title=@$content["title"]; |
@@ -25,21 +25,21 @@ discard block |
||
| 25 | 25 | $desc=@$content["description"]; |
| 26 | 26 | $items=@$content["items"]; |
| 27 | 27 | } |
| 28 | - if(isset($icon)){ |
|
| 28 | + if (isset($icon)) { |
|
| 29 | 29 | $this->setIcon($icon); |
| 30 | 30 | } |
| 31 | - if(isset($image)){ |
|
| 31 | + if (isset($image)) { |
|
| 32 | 32 | $this->setImage($image); |
| 33 | 33 | } |
| 34 | - if(isset($title)){ |
|
| 35 | - $this->setTitle($title,$desc); |
|
| 36 | - }elseif (isset($header)){ |
|
| 37 | - $this->setTitle($header,$desc,"header"); |
|
| 34 | + if (isset($title)) { |
|
| 35 | + $this->setTitle($title, $desc); |
|
| 36 | + }elseif (isset($header)) { |
|
| 37 | + $this->setTitle($header, $desc, "header"); |
|
| 38 | 38 | } |
| 39 | - if(isset($items)){ |
|
| 39 | + if (isset($items)) { |
|
| 40 | 40 | $this->addList($items); |
| 41 | 41 | } |
| 42 | - }else{ |
|
| 42 | + } else { |
|
| 43 | 43 | $this->setContent($content); |
| 44 | 44 | } |
| 45 | 45 | } |
@@ -50,11 +50,11 @@ discard block |
||
| 50 | 50 | return $list; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | - public function getList(){ |
|
| 53 | + public function getList() { |
|
| 54 | 54 | return $this->content["list"]; |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | - public function getItem($index){ |
|
| 57 | + public function getItem($index) { |
|
| 58 | 58 | return $this->getList()->getItem($index); |
| 59 | 59 | } |
| 60 | 60 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * @param string $event |
| 22 | 22 | * @param boolean $multiple |
| 23 | 23 | */ |
| 24 | - public function __construct($table,$class="active",$event="click",$multiple=false){ |
|
| 24 | + public function __construct($table, $class="active", $event="click", $multiple=false) { |
|
| 25 | 25 | $this->table=$table; |
| 26 | 26 | $this->class=$class; |
| 27 | 27 | $this->event=$event; |
@@ -55,12 +55,12 @@ discard block |
||
| 55 | 55 | return $this; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - public function compile(){ |
|
| 58 | + public function compile() { |
|
| 59 | 59 | $multiple=""; |
| 60 | - if(!$this->multiple){ |
|
| 60 | + if (!$this->multiple) { |
|
| 61 | 61 | $multiple="$(this).closest('tbody').children('tr').removeClass('".$this->class."');"; |
| 62 | 62 | } |
| 63 | - $this->table->onRow($this->event, $multiple."$(this).toggleClass('".$this->class."');",false,false); |
|
| 63 | + $this->table->onRow($this->event, $multiple."$(this).toggleClass('".$this->class."');", false, false); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | } |
@@ -7,12 +7,12 @@ discard block |
||
| 7 | 7 | * @author jc |
| 8 | 8 | * @property HtmlTable $_self |
| 9 | 9 | */ |
| 10 | -trait TableTrait{ |
|
| 10 | +trait TableTrait { |
|
| 11 | 11 | |
| 12 | 12 | abstract public function addEvent($event, $jsCode, $stopPropagation=false, $preventDefault=false); |
| 13 | 13 | abstract public function getOn($event, $url, $responseElement="", $parameters=array()); |
| 14 | 14 | |
| 15 | - protected function addToPropertyTable($property,$value){ |
|
| 15 | + protected function addToPropertyTable($property, $value) { |
|
| 16 | 16 | return $this->_self->addToProperty($property, $value); |
| 17 | 17 | } |
| 18 | 18 | |
@@ -23,15 +23,15 @@ discard block |
||
| 23 | 23 | public function setBasic($very=false) { |
| 24 | 24 | $table=$this->_self; |
| 25 | 25 | if ($very) |
| 26 | - $table->addToPropertyCtrl("class", "very", array ("very" )); |
|
| 27 | - return $table->addToPropertyCtrl("class", "basic", array ("basic" )); |
|
| 26 | + $table->addToPropertyCtrl("class", "very", array("very")); |
|
| 27 | + return $table->addToPropertyCtrl("class", "basic", array("basic")); |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | public function setCompact($very=false) { |
| 31 | 31 | $table=$this->_self; |
| 32 | 32 | if ($very) |
| 33 | - $table->addToPropertyCtrl("class", "very", array ("very" )); |
|
| 34 | - return $table->addToPropertyCtrl("class", "compact", array ("compact" )); |
|
| 33 | + $table->addToPropertyCtrl("class", "very", array("very")); |
|
| 34 | + return $table->addToPropertyCtrl("class", "compact", array("compact")); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | public function setCollapsing() { |
@@ -70,16 +70,16 @@ discard block |
||
| 70 | 70 | return $this->addToPropertyTable("class", "striped"); |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - public function onRowClick($jsCode, $stopPropagation=false, $preventDefault=false){ |
|
| 74 | - $this->onRowClick($jsCode,$stopPropagation,$preventDefault); |
|
| 73 | + public function onRowClick($jsCode, $stopPropagation=false, $preventDefault=false) { |
|
| 74 | + $this->onRowClick($jsCode, $stopPropagation, $preventDefault); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - public function onRow($event,$jsCode, $stopPropagation=false, $preventDefault=false){ |
|
| 78 | - $this->_self->addEvent($event."{{tr}}",$jsCode,$stopPropagation,$preventDefault); |
|
| 77 | + public function onRow($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
|
| 78 | + $this->_self->addEvent($event."{{tr}}", $jsCode, $stopPropagation, $preventDefault); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - public function getOnRow($event, $url, $responseElement="", $parameters=array()){ |
|
| 82 | - $parameters=\array_merge($parameters,["stopPropagation"=>false,"preventDefault"=>false]); |
|
| 83 | - return $this->_self->getOn($event."{{tbody tr}}", $url,$responseElement,$parameters); |
|
| 81 | + public function getOnRow($event, $url, $responseElement="", $parameters=array()) { |
|
| 82 | + $parameters=\array_merge($parameters, ["stopPropagation"=>false, "preventDefault"=>false]); |
|
| 83 | + return $this->_self->getOn($event."{{tbody tr}}", $url, $responseElement, $parameters); |
|
| 84 | 84 | } |
| 85 | 85 | } |
@@ -12,15 +12,15 @@ discard block |
||
| 12 | 12 | * @author jc |
| 13 | 13 | * @version 1.001 |
| 14 | 14 | */ |
| 15 | -class HtmlLabeledIconMenu extends HtmlMenu{ |
|
| 15 | +class HtmlLabeledIconMenu extends HtmlMenu { |
|
| 16 | 16 | |
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * @param string $identifier |
| 20 | 20 | * @param array $items icons |
| 21 | 21 | */ |
| 22 | - public function __construct( $identifier, $items=array()){ |
|
| 23 | - parent::__construct( $identifier, $items); |
|
| 22 | + public function __construct($identifier, $items=array()) { |
|
| 23 | + parent::__construct($identifier, $items); |
|
| 24 | 24 | $this->addToProperty("class", "labeled icon"); |
| 25 | 25 | } |
| 26 | 26 | |
@@ -31,14 +31,14 @@ discard block |
||
| 31 | 31 | protected function createItem($value) { |
| 32 | 32 | $text=""; |
| 33 | 33 | $v=$value; |
| 34 | - if(\is_array($value)){ |
|
| 34 | + if (\is_array($value)) { |
|
| 35 | 35 | $v=@$value[0]; |
| 36 | 36 | $text=@$value[1]; |
| 37 | 37 | } |
| 38 | 38 | $count=\sizeof($this->content); |
| 39 | 39 | $value=new HtmlIcon("icon-".$count, $v); |
| 40 | - $value->wrap("",$text); |
|
| 41 | - $itemO=new HtmlLink("item-".$count,"",$value); |
|
| 40 | + $value->wrap("", $text); |
|
| 41 | + $itemO=new HtmlLink("item-".$count, "", $value); |
|
| 42 | 42 | return $itemO->setClass("item"); |
| 43 | 43 | } |
| 44 | 44 | } |
@@ -12,15 +12,15 @@ discard block |
||
| 12 | 12 | * @author jc |
| 13 | 13 | * @version 1.001 |
| 14 | 14 | */ |
| 15 | -class HtmlIconMenu extends HtmlMenu{ |
|
| 15 | +class HtmlIconMenu extends HtmlMenu { |
|
| 16 | 16 | |
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * @param string $identifier |
| 20 | 20 | * @param array $items icons |
| 21 | 21 | */ |
| 22 | - public function __construct( $identifier, $items=array()){ |
|
| 23 | - parent::__construct( $identifier, $items); |
|
| 22 | + public function __construct($identifier, $items=array()) { |
|
| 23 | + parent::__construct($identifier, $items); |
|
| 24 | 24 | $this->addToProperty("class", "icon"); |
| 25 | 25 | } |
| 26 | 26 | |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | protected function createItem($value) { |
| 33 | 33 | $count=\sizeof($this->content); |
| 34 | 34 | $value=new HtmlIcon("icon-".$count, $value); |
| 35 | - $itemO=new HtmlLink("item-".$count,"",$value); |
|
| 35 | + $itemO=new HtmlLink("item-".$count, "", $value); |
|
| 36 | 36 | return $itemO->setClass("item"); |
| 37 | 37 | } |
| 38 | 38 | } |
@@ -40,12 +40,12 @@ discard block |
||
| 40 | 40 | * @return \Ajax\semantic\html\collections\HtmlMenu |
| 41 | 41 | */ |
| 42 | 42 | public function setType($type="") { |
| 43 | - return $this->addToPropertyCtrl("class", $type, array ("","item","text" )); |
|
| 43 | + return $this->addToPropertyCtrl("class", $type, array("", "item", "text")); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | public function setActiveItem($index) { |
| 47 | 47 | $item=$this->getItem($index); |
| 48 | - if ($item !== null) { |
|
| 48 | + if ($item!==null) { |
|
| 49 | 49 | $item->addToProperty("class", "active"); |
| 50 | 50 | } |
| 51 | 51 | return $this; |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | |
| 54 | 54 | private function getItemToInsert($item) { |
| 55 | 55 | if ($item instanceof HtmlInput || $item instanceof HtmlImg || $item instanceof HtmlIcon || $item instanceof HtmlButtonGroups || $item instanceof HtmlButton || $item instanceof HtmlLabel) { |
| 56 | - $itemO=new HtmlMenuItem("item-" . $this->identifier . "-" . \sizeof($this->content) , $item); |
|
| 56 | + $itemO=new HtmlMenuItem("item-".$this->identifier."-".\sizeof($this->content), $item); |
|
| 57 | 57 | $item=$itemO; |
| 58 | 58 | } |
| 59 | 59 | return $item; |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | private function afterInsert($item) { |
| 63 | 63 | if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false) |
| 64 | - $item->addToPropertyCtrl("class", "item", array ("item" )); |
|
| 64 | + $item->addToPropertyCtrl("class", "item", array("item")); |
|
| 65 | 65 | else { |
| 66 | 66 | $this->setSecondary(); |
| 67 | 67 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | public function addItem($item) { |
| 78 | 78 | $number=$item; |
| 79 | 79 | $item=parent::addItem($this->getItemToInsert($item)); |
| 80 | - if(\is_int($number)) |
|
| 80 | + if (\is_int($number)) |
|
| 81 | 81 | $item->setProperty("data-page", $number); |
| 82 | 82 | return $this->afterInsert($item); |
| 83 | 83 | } |
@@ -95,15 +95,15 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | public function generateMenuAsItem($menu, $header=null) { |
| 97 | 97 | $count=$this->count(); |
| 98 | - $item=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "div"); |
|
| 98 | + $item=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "div"); |
|
| 99 | 99 | if (isset($header)) { |
| 100 | - $headerItem=new HtmlSemDoubleElement("item-header-" . $this->identifier . "-" . $count, "div", "header"); |
|
| 100 | + $headerItem=new HtmlSemDoubleElement("item-header-".$this->identifier."-".$count, "div", "header"); |
|
| 101 | 101 | $headerItem->setContent($header); |
| 102 | 102 | $item->addContent($headerItem); |
| 103 | 103 | $this->_itemHeader=$headerItem; |
| 104 | 104 | } |
| 105 | - if(\is_array($menu)){ |
|
| 106 | - $menu=new HtmlMenu("menu-" . $this->identifier . "-" . $count,$menu); |
|
| 105 | + if (\is_array($menu)) { |
|
| 106 | + $menu=new HtmlMenu("menu-".$this->identifier."-".$count, $menu); |
|
| 107 | 107 | } |
| 108 | 108 | $menu->setClass("menu"); |
| 109 | 109 | $item->addContent($menu); |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $value=new HtmlSemDoubleElement($identifier, "a", "browse item", $value); |
| 119 | 119 | $value->addContent(new HtmlIcon("", "dropdown")); |
| 120 | 120 | $value=$this->addItem($value); |
| 121 | - $popup=new HtmlPopup($value, "popup-" . $this->identifier . "-" . $this->count(), $content); |
|
| 121 | + $popup=new HtmlPopup($value, "popup-".$this->identifier."-".$this->count(), $content); |
|
| 122 | 122 | $popup->setFlowing()->setPosition("bottom left")->setOn("click"); |
| 123 | 123 | $this->wrap("", $popup); |
| 124 | 124 | return $popup; |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | public function addDropdownAsItem($value, $items=NULL) { |
| 128 | 128 | $dd=$value; |
| 129 | 129 | if (\is_string($value)) { |
| 130 | - $dd=new HtmlDropdown("dropdown-" . $this->identifier . "-" . $this->count(), $value, $items); |
|
| 130 | + $dd=new HtmlDropdown("dropdown-".$this->identifier."-".$this->count(), $value, $items); |
|
| 131 | 131 | } |
| 132 | 132 | $this->addItem($dd); |
| 133 | 133 | return $dd; |
@@ -140,14 +140,14 @@ discard block |
||
| 140 | 140 | * @see \Ajax\common\html\html5\HtmlCollection::createItem() |
| 141 | 141 | */ |
| 142 | 142 | protected function createItem($value) { |
| 143 | - $itemO=new HtmlMenuItem($this->identifier."-item-" . \sizeof($this->content),""); |
|
| 143 | + $itemO=new HtmlMenuItem($this->identifier."-item-".\sizeof($this->content), ""); |
|
| 144 | 144 | $itemO->setTagName("a"); |
| 145 | 145 | $itemO->setContent($value); |
| 146 | 146 | return $itemO; |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | public function setSecondary($value=true) { |
| 150 | - if($value) |
|
| 150 | + if ($value) |
|
| 151 | 151 | $this->addToProperty("class", "secondary"); |
| 152 | 152 | else |
| 153 | 153 | $this->removePropertyValue("class", "secondary"); |
@@ -155,28 +155,28 @@ discard block |
||
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | public function setVertical() { |
| 158 | - return $this->addToPropertyCtrl("class", "vertical", array ("vertical" )); |
|
| 158 | + return $this->addToPropertyCtrl("class", "vertical", array("vertical")); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | public function setPosition($value="right") { |
| 162 | - return $this->addToPropertyCtrl("class", $value, array ("right","left" )); |
|
| 162 | + return $this->addToPropertyCtrl("class", $value, array("right", "left")); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | public function setPointing($value=Direction::NONE) { |
| 166 | - return $this->addToPropertyCtrl("class", $value . " pointing", Direction::getConstantValues("pointing")); |
|
| 166 | + return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing")); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | public function asTab($vertical=false) { |
| 170 | - $this->apply(function (HtmlDoubleElement &$item) { |
|
| 170 | + $this->apply(function(HtmlDoubleElement&$item) { |
|
| 171 | 171 | $item->setTagName("a"); |
| 172 | 172 | }); |
| 173 | - if ($vertical === true) |
|
| 173 | + if ($vertical===true) |
|
| 174 | 174 | $this->setVertical(); |
| 175 | 175 | return $this->addToProperty("class", "tabular"); |
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | public function asPagination() { |
| 179 | - $this->apply(function (HtmlDoubleElement &$item) { |
|
| 179 | + $this->apply(function(HtmlDoubleElement&$item) { |
|
| 180 | 180 | $item->setTagName("a"); |
| 181 | 181 | }); |
| 182 | 182 | return $this->addToProperty("class", "pagination"); |
@@ -213,10 +213,10 @@ discard block |
||
| 213 | 213 | */ |
| 214 | 214 | public function setWidth($width) { |
| 215 | 215 | if (\is_int($width)) { |
| 216 | - $width=Wide::getConstants()["W" . $width]; |
|
| 216 | + $width=Wide::getConstants()["W".$width]; |
|
| 217 | 217 | } |
| 218 | 218 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 219 | - return $this->addToPropertyCtrl("class", "item", array ("item" )); |
|
| 219 | + return $this->addToPropertyCtrl("class", "item", array("item")); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | public function addImage($identifier, $src="", $alt="") { |
@@ -231,14 +231,14 @@ discard block |
||
| 231 | 231 | return $this->_itemHeader; |
| 232 | 232 | } |
| 233 | 233 | |
| 234 | - public function setHasContainer(){ |
|
| 235 | - return $this->wrapContent("<div class='ui container'>","</div>"); |
|
| 234 | + public function setHasContainer() { |
|
| 235 | + return $this->wrapContent("<div class='ui container'>", "</div>"); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - public function run(JsUtils $js){ |
|
| 239 | - if($this->identifier!=="" && !isset($this->_bsComponent)) |
|
| 240 | - $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false); |
|
| 241 | - $result= parent::run($js); |
|
| 238 | + public function run(JsUtils $js) { |
|
| 239 | + if ($this->identifier!=="" && !isset($this->_bsComponent)) |
|
| 240 | + $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}', false, false); |
|
| 241 | + $result=parent::run($js); |
|
| 242 | 242 | return $result->setItemSelector(".item"); |
| 243 | 243 | } |
| 244 | 244 | } |