@@ -20,6 +20,9 @@ |
||
20 | 20 | protected $_tabsType="tabs"; |
21 | 21 | protected $stacked=""; |
22 | 22 | |
23 | + /** |
|
24 | + * @param string $identifier |
|
25 | + */ |
|
23 | 26 | public function __construct($identifier, $tagName="ul") { |
24 | 27 | parent::__construct($identifier, $tagName); |
25 | 28 | $this->_template="<%tagName% %properties%>%tabs%</%tagName%>%content%"; |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | * @param string $type one of text,item |
28 | 28 | * @return \Ajax\semantic\html\collections\HtmlMenu |
29 | 29 | */ |
30 | - public function setType($type=""){ |
|
31 | - return $this->addToPropertyCtrl("class", $type, array("","item","text")); |
|
30 | + public function setType($type="") { |
|
31 | + return $this->addToPropertyCtrl("class", $type, array("", "item", "text")); |
|
32 | 32 | } |
33 | 33 | |
34 | - public function setActiveItem($index){ |
|
34 | + public function setActiveItem($index) { |
|
35 | 35 | $item=$this->getItem($index); |
36 | - if($item!==null){ |
|
36 | + if ($item!==null) { |
|
37 | 37 | $item->addToProperty("class", "active"); |
38 | 38 | } |
39 | 39 | return $this; |
@@ -43,24 +43,24 @@ discard block |
||
43 | 43 | * {@inheritDoc} |
44 | 44 | * @see \Ajax\common\html\html5\HtmlCollection::addItem() |
45 | 45 | */ |
46 | - public function addItem($item){ |
|
47 | - if($item instanceof \Ajax\semantic\html\elements\HtmlInput){ |
|
48 | - $itemO=new HtmlSemDoubleElement("item-".$this->identifier,"div"); |
|
46 | + public function addItem($item) { |
|
47 | + if ($item instanceof \Ajax\semantic\html\elements\HtmlInput) { |
|
48 | + $itemO=new HtmlSemDoubleElement("item-".$this->identifier, "div"); |
|
49 | 49 | $itemO->setContent($item); |
50 | 50 | $item=$itemO; |
51 | 51 | } |
52 | 52 | $item=parent::addItem($item); |
53 | - if(!$item instanceof HtmlMenu) |
|
54 | - $item->addToPropertyCtrl("class", "item",array("item")); |
|
55 | - else{ |
|
53 | + if (!$item instanceof HtmlMenu) |
|
54 | + $item->addToPropertyCtrl("class", "item", array("item")); |
|
55 | + else { |
|
56 | 56 | $this->setSecondary(); |
57 | 57 | } |
58 | 58 | } |
59 | - public function generateMenuAsItem($menu,$header=null){ |
|
59 | + public function generateMenuAsItem($menu, $header=null) { |
|
60 | 60 | $count=$this->count(); |
61 | - $item=new HtmlSemDoubleElement("item-".$this->identifier."-".$count,"div"); |
|
62 | - if(isset($header)){ |
|
63 | - $headerItem=new HtmlSemDoubleElement("item-header-".$this->identifier."-".$count,"div","header"); |
|
61 | + $item=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "div"); |
|
62 | + if (isset($header)) { |
|
63 | + $headerItem=new HtmlSemDoubleElement("item-header-".$this->identifier."-".$count, "div", "header"); |
|
64 | 64 | $headerItem->setContent($header); |
65 | 65 | $item->addContent($headerItem); |
66 | 66 | } |
@@ -68,59 +68,59 @@ discard block |
||
68 | 68 | $item->addContent($menu); |
69 | 69 | return $item; |
70 | 70 | } |
71 | - public function addMenuAsItem($menu,$header=null){ |
|
72 | - return $this->addItem($this->generateMenuAsItem($menu,$header)); |
|
71 | + public function addMenuAsItem($menu, $header=null) { |
|
72 | + return $this->addItem($this->generateMenuAsItem($menu, $header)); |
|
73 | 73 | } |
74 | 74 | /** |
75 | 75 | * {@inheritDoc} |
76 | 76 | * @see \Ajax\common\html\html5\HtmlCollection::createItem() |
77 | 77 | */ |
78 | 78 | protected function createItem($value) { |
79 | - $itemO=new HtmlLink("item-".\sizeof($this->content),"",$value); |
|
79 | + $itemO=new HtmlLink("item-".\sizeof($this->content), "", $value); |
|
80 | 80 | return $itemO->setClass("item"); |
81 | 81 | } |
82 | 82 | |
83 | - public function setInverted(){ |
|
83 | + public function setInverted() { |
|
84 | 84 | return $this->addToProperty("class", "inverted"); |
85 | 85 | } |
86 | 86 | |
87 | - public function setSecondary(){ |
|
87 | + public function setSecondary() { |
|
88 | 88 | return $this->addToProperty("class", "secondary"); |
89 | 89 | } |
90 | 90 | |
91 | - public function setVertical(){ |
|
91 | + public function setVertical() { |
|
92 | 92 | return $this->addToProperty("class", "vertical"); |
93 | 93 | } |
94 | 94 | |
95 | - public function setPosition($value="right"){ |
|
96 | - return $this->addToPropertyCtrl("class", $value,array("right","left")); |
|
95 | + public function setPosition($value="right") { |
|
96 | + return $this->addToPropertyCtrl("class", $value, array("right", "left")); |
|
97 | 97 | } |
98 | 98 | |
99 | - public function setPointing($value=Direction::NONE){ |
|
100 | - return $this->addToPropertyCtrl("class", $value." pointing",Direction::getConstantValues("pointing")); |
|
99 | + public function setPointing($value=Direction::NONE) { |
|
100 | + return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing")); |
|
101 | 101 | } |
102 | 102 | |
103 | - public function asTab($vertical=false){ |
|
104 | - $this->apply(function(HtmlDoubleElement &$item){$item->setTagName("a");}); |
|
105 | - if($vertical===true) |
|
103 | + public function asTab($vertical=false) { |
|
104 | + $this->apply(function(HtmlDoubleElement & $item) {$item->setTagName("a"); }); |
|
105 | + if ($vertical===true) |
|
106 | 106 | $this->setVertical(); |
107 | 107 | return $this->addToProperty("class", "tabular"); |
108 | 108 | } |
109 | 109 | |
110 | - public function asPagination(){ |
|
111 | - $this->apply(function(HtmlDoubleElement &$item){$item->setTagName("a");}); |
|
110 | + public function asPagination() { |
|
111 | + $this->apply(function(HtmlDoubleElement & $item) {$item->setTagName("a"); }); |
|
112 | 112 | return $this->addToProperty("class", "pagination"); |
113 | 113 | } |
114 | 114 | |
115 | - public function setFixed(){ |
|
115 | + public function setFixed() { |
|
116 | 116 | return $this->addToProperty("class", "fixed"); |
117 | 117 | } |
118 | 118 | |
119 | - public function setFluid(){ |
|
119 | + public function setFluid() { |
|
120 | 120 | return $this->addToProperty("class", "fluid"); |
121 | 121 | } |
122 | 122 | |
123 | - public function setCompact(){ |
|
123 | + public function setCompact() { |
|
124 | 124 | return $this->addToProperty("class", "compact"); |
125 | 125 | } |
126 | 126 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | */ |
130 | 130 | public function fromDatabaseObject($object, $function) { |
131 | 131 | $return=$function($object); |
132 | - if(\is_array($return)) |
|
132 | + if (\is_array($return)) |
|
133 | 133 | $this->addItems($return); |
134 | 134 | else |
135 | 135 | $this->addItem($return); |
@@ -50,9 +50,9 @@ discard block |
||
50 | 50 | $item=$itemO; |
51 | 51 | } |
52 | 52 | $item=parent::addItem($item); |
53 | - if(!$item instanceof HtmlMenu) |
|
54 | - $item->addToPropertyCtrl("class", "item",array("item")); |
|
55 | - else{ |
|
53 | + if(!$item instanceof HtmlMenu) { |
|
54 | + $item->addToPropertyCtrl("class", "item",array("item")); |
|
55 | + } else{ |
|
56 | 56 | $this->setSecondary(); |
57 | 57 | } |
58 | 58 | } |
@@ -102,8 +102,9 @@ discard block |
||
102 | 102 | |
103 | 103 | public function asTab($vertical=false){ |
104 | 104 | $this->apply(function(HtmlDoubleElement &$item){$item->setTagName("a");}); |
105 | - if($vertical===true) |
|
106 | - $this->setVertical(); |
|
105 | + if($vertical===true) { |
|
106 | + $this->setVertical(); |
|
107 | + } |
|
107 | 108 | return $this->addToProperty("class", "tabular"); |
108 | 109 | } |
109 | 110 | |
@@ -129,9 +130,10 @@ discard block |
||
129 | 130 | */ |
130 | 131 | public function fromDatabaseObject($object, $function) { |
131 | 132 | $return=$function($object); |
132 | - if(\is_array($return)) |
|
133 | - $this->addItems($return); |
|
134 | - else |
|
135 | - $this->addItem($return); |
|
133 | + if(\is_array($return)) { |
|
134 | + $this->addItems($return); |
|
135 | + } else { |
|
136 | + $this->addItem($return); |
|
137 | + } |
|
136 | 138 | } |
137 | 139 | } |
138 | 140 | \ No newline at end of file |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | return $this->setParam("onShow", "%function(){".$jsCode."}%"); |
31 | 31 | } |
32 | 32 | |
33 | - public function setExclusive($value){ |
|
33 | + public function setExclusive($value) { |
|
34 | 34 | return $this->setParam("exclusive", $value); |
35 | 35 | } |
36 | 36 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * @param string $popup the css selector of the popup |
40 | 40 | * @return \Ajax\semantic\components\Popup |
41 | 41 | */ |
42 | - public function setPopup($popup){ |
|
42 | + public function setPopup($popup) { |
|
43 | 43 | return $this->setParam("popup", $popup); |
44 | 44 | } |
45 | 45 | //TODO other events implementation |
@@ -9,8 +9,9 @@ |
||
9 | 9 | public function __construct($identifier,$width){ |
10 | 10 | parent::__construct($identifier,"div"); |
11 | 11 | $this->setClass("column"); |
12 | - if(isset($width)) |
|
13 | - $this->setWidth($width); |
|
12 | + if(isset($width)) { |
|
13 | + $this->setWidth($width); |
|
14 | + } |
|
14 | 15 | } |
15 | 16 | |
16 | 17 | public function setWidth($width){ |
@@ -12,12 +12,12 @@ discard block |
||
12 | 12 | * @author jc |
13 | 13 | * @version 1.001 |
14 | 14 | */ |
15 | -class HtmlGridCol extends HtmlSemDoubleElement{ |
|
15 | +class HtmlGridCol extends HtmlSemDoubleElement { |
|
16 | 16 | use TextAlignmentTrait; |
17 | - public function __construct($identifier,$width){ |
|
18 | - parent::__construct($identifier,"div"); |
|
17 | + public function __construct($identifier, $width) { |
|
18 | + parent::__construct($identifier, "div"); |
|
19 | 19 | $this->setClass("column"); |
20 | - if(isset($width)) |
|
20 | + if (isset($width)) |
|
21 | 21 | $this->setWidth($width); |
22 | 22 | } |
23 | 23 | |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | * @param int $width |
27 | 27 | * @return \Ajax\semantic\html\content\HtmlGridCol |
28 | 28 | */ |
29 | - public function setWidth($width){ |
|
30 | - if(\is_int($width)){ |
|
29 | + public function setWidth($width) { |
|
30 | + if (\is_int($width)) { |
|
31 | 31 | $width=Wide::getConstants()["W".$width]; |
32 | 32 | } |
33 | 33 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
34 | - return $this->addToPropertyCtrl("class", "wide",array("wide")); |
|
34 | + return $this->addToPropertyCtrl("class", "wide", array("wide")); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | * @param string $value left or right |
40 | 40 | * @return \Ajax\semantic\html\content\HtmlGridCol |
41 | 41 | */ |
42 | - public function setFloated($value="left"){ |
|
42 | + public function setFloated($value="left") { |
|
43 | 43 | return $this->addToProperty("class", $value." floated"); |
44 | 44 | } |
45 | 45 | |
46 | 46 | |
47 | - public function setValue($value){ |
|
47 | + public function setValue($value) { |
|
48 | 48 | $this->content=$value; |
49 | 49 | } |
50 | 50 | } |
51 | 51 | \ No newline at end of file |
@@ -14,10 +14,11 @@ |
||
14 | 14 | if(isset($numCols)){ |
15 | 15 | $numCols=min(16,$numCols); |
16 | 16 | $numCols=max(1,$numCols); |
17 | - if($colSizing) |
|
18 | - $width=(int)(16/$numCols); |
|
19 | - else |
|
20 | - $this->_colSize=16/$numCols; |
|
17 | + if($colSizing) { |
|
18 | + $width=(int)(16/$numCols); |
|
19 | + } else { |
|
20 | + $this->_colSize=16/$numCols; |
|
21 | + } |
|
21 | 22 | for ($i=0;$i<$numCols;$i++){ |
22 | 23 | $this->addItem($width); |
23 | 24 | } |
@@ -16,6 +16,10 @@ discard block |
||
16 | 16 | class HtmlGridRow extends HtmlCollection{ |
17 | 17 | |
18 | 18 | private $_colSize; |
19 | + |
|
20 | + /** |
|
21 | + * @param string $identifier |
|
22 | + */ |
|
19 | 23 | public function __construct( $identifier,$numCols=NULL,$colSizing=false){ |
20 | 24 | parent::__construct( $identifier,"div"); |
21 | 25 | $this->setClass("row"); |
@@ -49,7 +53,7 @@ discard block |
||
49 | 53 | /** |
50 | 54 | * return the col at $index |
51 | 55 | * @param int $index |
52 | - * @return \Ajax\semantic\html\collections\HtmlGridCol |
|
56 | + * @return \Ajax\common\html\HtmlDoubleElement |
|
53 | 57 | */ |
54 | 58 | public function getCol($index){ |
55 | 59 | return $this->getItem($index); |
@@ -16,23 +16,23 @@ 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 | - public function __construct( $identifier,$numCols=NULL,$colSizing=false,$implicite=false){ |
|
25 | - parent::__construct( $identifier,"div","row"); |
|
24 | + public function __construct($identifier, $numCols=NULL, $colSizing=false, $implicite=false) { |
|
25 | + parent::__construct($identifier, "div", "row"); |
|
26 | 26 | $this->_implicite=$implicite; |
27 | 27 | $width=null; |
28 | - if(isset($numCols)){ |
|
29 | - $numCols=min(16,$numCols); |
|
30 | - $numCols=max(1,$numCols); |
|
31 | - if($colSizing) |
|
32 | - $width=(int)(16/$numCols); |
|
28 | + if (isset($numCols)) { |
|
29 | + $numCols=min(16, $numCols); |
|
30 | + $numCols=max(1, $numCols); |
|
31 | + if ($colSizing) |
|
32 | + $width=(int) (16 / $numCols); |
|
33 | 33 | else |
34 | - $this->_colSize=16/$numCols; |
|
35 | - for ($i=0;$i<$numCols;$i++){ |
|
34 | + $this->_colSize=16 / $numCols; |
|
35 | + for ($i=0; $i<$numCols; $i++) { |
|
36 | 36 | $this->addItem($width); |
37 | 37 | } |
38 | 38 | } |
@@ -43,12 +43,12 @@ discard block |
||
43 | 43 | * @param int $width |
44 | 44 | * @return \Ajax\semantic\html\content\HtmlGridRow |
45 | 45 | */ |
46 | - public function setWidth($width){ |
|
47 | - if(\is_int($width)){ |
|
46 | + public function setWidth($width) { |
|
47 | + if (\is_int($width)) { |
|
48 | 48 | $width=Wide::getConstants()["W".$width]; |
49 | 49 | } |
50 | 50 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
51 | - return $this->addToPropertyCtrl("class", "column",array("column")); |
|
51 | + return $this->addToPropertyCtrl("class", "column", array("column")); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * @param int $index |
57 | 57 | * @return \Ajax\semantic\html\collections\HtmlGridCol |
58 | 58 | */ |
59 | - public function getCol($index){ |
|
59 | + public function getCol($index) { |
|
60 | 60 | return $this->getItem($index); |
61 | 61 | } |
62 | 62 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * stretch the row contents to take up the entire column height |
65 | 65 | * @return \Ajax\semantic\html\content\HtmlGridRow |
66 | 66 | */ |
67 | - public function setStretched(){ |
|
67 | + public function setStretched() { |
|
68 | 68 | return $this->addToProperty("class", "stretched"); |
69 | 69 | } |
70 | 70 | |
@@ -72,19 +72,19 @@ discard block |
||
72 | 72 | * @param string $color |
73 | 73 | * @return \Ajax\semantic\html\content\HtmlGridRow |
74 | 74 | */ |
75 | - public function setColor($color){ |
|
76 | - return $this->addToPropertyCtrl("class", $color,Color::getConstants()); |
|
75 | + public function setColor($color) { |
|
76 | + return $this->addToPropertyCtrl("class", $color, Color::getConstants()); |
|
77 | 77 | } |
78 | 78 | |
79 | - public function setValues($values,$force=false){ |
|
79 | + public function setValues($values, $force=false) { |
|
80 | 80 | $count=$this->count(); |
81 | - if($force===true){ |
|
82 | - for($i=$count;$i<\sizeof($values);$i++){ |
|
83 | - $this->addItem(new HtmlGridCol($this->identifier."-col-".($this->count()+1),null)); |
|
81 | + if ($force===true) { |
|
82 | + for ($i=$count; $i<\sizeof($values); $i++) { |
|
83 | + $this->addItem(new HtmlGridCol($this->identifier."-col-".($this->count()+1), null)); |
|
84 | 84 | } |
85 | 85 | } |
86 | - $count=\min(array($this->count(),\sizeof($values))); |
|
87 | - for($i=0;$i<$count;$i++){ |
|
86 | + $count=\min(array($this->count(), \sizeof($values))); |
|
87 | + for ($i=0; $i<$count; $i++) { |
|
88 | 88 | $this->content[$i]->setValue($values[$i]); |
89 | 89 | } |
90 | 90 | } |
@@ -93,15 +93,15 @@ discard block |
||
93 | 93 | * {@inheritDoc} |
94 | 94 | * @see \Ajax\common\html\HtmlCollection::createItem() |
95 | 95 | */ |
96 | - protected function createItem($value){ |
|
97 | - $col=new HtmlGridCol($this->identifier."-col-".($this->count()+1),$value); |
|
96 | + protected function createItem($value) { |
|
97 | + $col=new HtmlGridCol($this->identifier."-col-".($this->count()+1), $value); |
|
98 | 98 | return $col; |
99 | 99 | } |
100 | 100 | |
101 | - public function compile(JsUtils $js=NULL,View $view=NULL){ |
|
102 | - if($this->_implicite===true){ |
|
101 | + public function compile(JsUtils $js=NULL, View $view=NULL) { |
|
102 | + if ($this->_implicite===true) { |
|
103 | 103 | $this->_template="%wrapContentBefore%%content%%wrapContentAfter%"; |
104 | 104 | } |
105 | - return parent::compile($js,$view); |
|
105 | + return parent::compile($js, $view); |
|
106 | 106 | } |
107 | 107 | } |
108 | 108 | \ No newline at end of file |
@@ -101,8 +101,9 @@ discard block |
||
101 | 101 | * @return \Ajax\semantic\html\collections\HtmlGrid |
102 | 102 | */ |
103 | 103 | public function setPadded($value=NULL){ |
104 | - if(isset($value)) |
|
105 | - $this->addToPropertyCtrl("class", $value,array("vertically","horizontally")); |
|
104 | + if(isset($value)) { |
|
105 | + $this->addToPropertyCtrl("class", $value,array("vertically","horizontally")); |
|
106 | + } |
|
106 | 107 | return $this->addToProperty("class", "padded"); |
107 | 108 | } |
108 | 109 | |
@@ -124,8 +125,9 @@ discard block |
||
124 | 125 | * @see \Ajax\common\html\HtmlCollection::createItem() |
125 | 126 | */ |
126 | 127 | protected function createItem($value){ |
127 | - if($this->_createCols===false) |
|
128 | - $value=null; |
|
128 | + if($this->_createCols===false) { |
|
129 | + $value=null; |
|
130 | + } |
|
129 | 131 | $item=new HtmlGridRow($this->identifier."-row-".($this->count()+1),$value,$this->_colSizing); |
130 | 132 | return $item; |
131 | 133 | } |
@@ -19,6 +19,11 @@ discard block |
||
19 | 19 | private $_createCols; |
20 | 20 | private $_colSizing=true; |
21 | 21 | private $_implicitRows=false; |
22 | + |
|
23 | + /** |
|
24 | + * @param string $identifier |
|
25 | + * @param integer $numCols |
|
26 | + */ |
|
22 | 27 | public function __construct( $identifier,$numRows=1,$numCols=NULL,$createCols=true,$implicitRows=false){ |
23 | 28 | parent::__construct( $identifier, "div"); |
24 | 29 | $this->_implicitRows=$implicitRows; |
@@ -51,7 +56,7 @@ discard block |
||
51 | 56 | /** |
52 | 57 | * return the row at $index |
53 | 58 | * @param int $index |
54 | - * @return \Ajax\semantic\html\collections\HtmlGridRow |
|
59 | + * @return \Ajax\common\html\HtmlDoubleElement |
|
55 | 60 | */ |
56 | 61 | public function getRow($index){ |
57 | 62 | return $this->getItem($index); |
@@ -15,23 +15,23 @@ discard block |
||
15 | 15 | * @author jc |
16 | 16 | * @version 1.001 |
17 | 17 | */ |
18 | -class HtmlGrid extends HtmlSemCollection{ |
|
18 | +class HtmlGrid extends HtmlSemCollection { |
|
19 | 19 | use TextAlignmentTrait; |
20 | 20 | private $_createCols; |
21 | 21 | private $_colSizing=true; |
22 | 22 | private $_implicitRows=false; |
23 | - public function __construct( $identifier,$numRows=1,$numCols=NULL,$createCols=true,$implicitRows=false){ |
|
24 | - parent::__construct( $identifier, "div","ui grid"); |
|
23 | + public function __construct($identifier, $numRows=1, $numCols=NULL, $createCols=true, $implicitRows=false) { |
|
24 | + parent::__construct($identifier, "div", "ui grid"); |
|
25 | 25 | $this->_implicitRows=$implicitRows; |
26 | 26 | $this->_createCols=$createCols; |
27 | - if(isset($numCols)){ |
|
27 | + if (isset($numCols)) { |
|
28 | 28 | //if($this->_createCols){ |
29 | 29 | $this->_colSizing=false; |
30 | 30 | //} |
31 | 31 | $cols=Wide::getConstants()["W".$numCols]; |
32 | - $this->addToProperty("class",$cols." column"); |
|
32 | + $this->addToProperty("class", $cols." column"); |
|
33 | 33 | } |
34 | - $this->setNumRows($numRows,$numCols); |
|
34 | + $this->setNumRows($numRows, $numCols); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -40,9 +40,9 @@ discard block |
||
40 | 40 | * @param int $numCols |
41 | 41 | * @return \Ajax\semantic\html\collections\HtmlGrid |
42 | 42 | */ |
43 | - public function setNumRows($numRows,$numCols=NULL){ |
|
43 | + public function setNumRows($numRows, $numCols=NULL) { |
|
44 | 44 | $count=$this->count(); |
45 | - for($i=$count;$i<$numRows;$i++){ |
|
45 | + for ($i=$count; $i<$numRows; $i++) { |
|
46 | 46 | $this->addItem($numCols); |
47 | 47 | } |
48 | 48 | return $this; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | * @param int $index |
54 | 54 | * @return \Ajax\semantic\html\collections\HtmlGridRow |
55 | 55 | */ |
56 | - public function getRow($index){ |
|
56 | + public function getRow($index) { |
|
57 | 57 | return $this->getItem($index); |
58 | 58 | } |
59 | 59 | |
@@ -62,9 +62,9 @@ discard block |
||
62 | 62 | * @param int $col |
63 | 63 | * @return \Ajax\semantic\html\collections\HtmlGridCol |
64 | 64 | */ |
65 | - public function getCell($row,$col){ |
|
65 | + public function getCell($row, $col) { |
|
66 | 66 | $row=$this->getItem($row); |
67 | - if(isset($row)){ |
|
67 | + if (isset($row)) { |
|
68 | 68 | $col=$row->getItem($col); |
69 | 69 | } |
70 | 70 | return $col; |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | * @param boolean $vertically |
76 | 76 | * @return \Ajax\semantic\html\collections\HtmlGrid |
77 | 77 | */ |
78 | - public function setDivided($vertically=false){ |
|
79 | - $value=($vertically===true)?"vertically divided":"divided"; |
|
78 | + public function setDivided($vertically=false) { |
|
79 | + $value=($vertically===true) ? "vertically divided" : "divided"; |
|
80 | 80 | return $this->addToProperty("class", $value); |
81 | 81 | } |
82 | 82 | |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | * @param boolean $internal true for internal cells |
86 | 86 | * @return \Ajax\semantic\html\collections\HtmlGrid |
87 | 87 | */ |
88 | - public function setCelled($internal=false){ |
|
89 | - $value=($internal===true)?"internal celled":"celled"; |
|
88 | + public function setCelled($internal=false) { |
|
89 | + $value=($internal===true) ? "internal celled" : "celled"; |
|
90 | 90 | return $this->addToProperty("class", $value); |
91 | 91 | } |
92 | 92 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | * automatically resize all elements to split the available width evenly |
95 | 95 | * @return \Ajax\semantic\html\collections\HtmlGrid |
96 | 96 | */ |
97 | - public function setEqualWidth(){ |
|
97 | + public function setEqualWidth() { |
|
98 | 98 | return $this->addToProperty("class", "equal width"); |
99 | 99 | } |
100 | 100 | |
@@ -103,9 +103,9 @@ discard block |
||
103 | 103 | * @param string $value |
104 | 104 | * @return \Ajax\semantic\html\collections\HtmlGrid |
105 | 105 | */ |
106 | - public function setPadded($value=NULL){ |
|
107 | - if(isset($value)) |
|
108 | - $this->addToPropertyCtrl("class", $value,array("vertically","horizontally")); |
|
106 | + public function setPadded($value=NULL) { |
|
107 | + if (isset($value)) |
|
108 | + $this->addToPropertyCtrl("class", $value, array("vertically", "horizontally")); |
|
109 | 109 | return $this->addToProperty("class", "padded"); |
110 | 110 | } |
111 | 111 | |
@@ -113,37 +113,37 @@ discard block |
||
113 | 113 | * @param boolean $very |
114 | 114 | * @return \Ajax\semantic\html\collections\HtmlGrid |
115 | 115 | */ |
116 | - public function setRelaxed($very=false){ |
|
117 | - $value=($very===true)?"very relaxed":"relaxed"; |
|
116 | + public function setRelaxed($very=false) { |
|
117 | + $value=($very===true) ? "very relaxed" : "relaxed"; |
|
118 | 118 | return $this->addToProperty("class", $value); |
119 | 119 | } |
120 | 120 | |
121 | - public function setVerticalAlignment($value=VerticalAlignment::MIDDLE){ |
|
122 | - return $this->addToPropertyCtrl("class", $value." aligned",VerticalAlignment::getConstantValues("aligned")); |
|
121 | + public function setVerticalAlignment($value=VerticalAlignment::MIDDLE) { |
|
122 | + return $this->addToPropertyCtrl("class", $value." aligned", VerticalAlignment::getConstantValues("aligned")); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
126 | 126 | * {@inheritDoc} |
127 | 127 | * @see \Ajax\common\html\HtmlCollection::createItem() |
128 | 128 | */ |
129 | - protected function createItem($value){ |
|
130 | - if($this->_createCols===false) |
|
129 | + protected function createItem($value) { |
|
130 | + if ($this->_createCols===false) |
|
131 | 131 | $value=null; |
132 | - $item=new HtmlGridRow($this->identifier."-row-".($this->count()+1),$value,$this->_colSizing,$this->_implicitRows); |
|
132 | + $item=new HtmlGridRow($this->identifier."-row-".($this->count()+1), $value, $this->_colSizing, $this->_implicitRows); |
|
133 | 133 | return $item; |
134 | 134 | } |
135 | 135 | |
136 | - public function setValues($values){ |
|
136 | + public function setValues($values) { |
|
137 | 137 | $count=$this->count(); |
138 | - if($this->_createCols===false){ |
|
139 | - for($i=$count;$i<\sizeof($values);$i++){ |
|
138 | + if ($this->_createCols===false) { |
|
139 | + for ($i=$count; $i<\sizeof($values); $i++) { |
|
140 | 140 | $colSize=\sizeof($values[$i]); |
141 | - $this->addItem(new HtmlGridRow($this->identifier."-row-".($this->count()+1),$colSize,$this->_colSizing,$this->_implicitRows)); |
|
141 | + $this->addItem(new HtmlGridRow($this->identifier."-row-".($this->count()+1), $colSize, $this->_colSizing, $this->_implicitRows)); |
|
142 | 142 | } |
143 | 143 | } |
144 | - $count=\min(array($this->count(),\sizeof($values))); |
|
145 | - for($i=0;$i<$count;$i++){ |
|
146 | - $this->content[$i]->setValues($values[$i],$this->_createCols===false); |
|
144 | + $count=\min(array($this->count(), \sizeof($values))); |
|
145 | + for ($i=0; $i<$count; $i++) { |
|
146 | + $this->content[$i]->setValues($values[$i], $this->_createCols===false); |
|
147 | 147 | } |
148 | 148 | } |
149 | 149 |
@@ -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 | } |
39 | 39 | \ No newline at end of file |
@@ -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 | } |
45 | 45 | \ No newline at end of file |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | class HtmlPopup extends HtmlSemDoubleElement { |
11 | 11 | private $params; |
12 | 12 | private $_container; |
13 | - public function __construct(BaseHtml $container,$identifier, $content="") { |
|
13 | + public function __construct(BaseHtml $container, $identifier, $content="") { |
|
14 | 14 | parent::__construct($identifier, "div"); |
15 | 15 | $this->_container=$container; |
16 | 16 | $this->setClass("ui popup"); |
@@ -18,11 +18,11 @@ discard block |
||
18 | 18 | $this->params=array("on"=>"click"); |
19 | 19 | } |
20 | 20 | |
21 | - public function setFlowing(){ |
|
21 | + public function setFlowing() { |
|
22 | 22 | return $this->addToProperty("class", "flowing"); |
23 | 23 | } |
24 | 24 | |
25 | - public function setBasic(){ |
|
25 | + public function setBasic() { |
|
26 | 26 | return $this->addToProperty("class", "basic"); |
27 | 27 | } |
28 | 28 | |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | * {@inheritDoc} |
31 | 31 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
32 | 32 | */ |
33 | - public function run(JsUtils $js){ |
|
33 | + public function run(JsUtils $js) { |
|
34 | 34 | $this->params["popup"]="#".$this->identifier; |
35 | - $js->semantic()->popup("#".$this->_container->getIdentifier(),$this->params); |
|
35 | + $js->semantic()->popup("#".$this->_container->getIdentifier(), $this->params); |
|
36 | 36 | } |
37 | 37 | } |
38 | 38 | \ No newline at end of file |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | foreach ($items as $k=>$v){ |
18 | 18 | $this->addItem([$k,$v]); |
19 | 19 | } |
20 | - }else{ |
|
20 | + } else{ |
|
21 | 21 | foreach ($items as $item){ |
22 | 22 | $this->addItem($item); |
23 | 23 | } |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * @return \Ajax\common\html\HtmlDoubleElement |
54 | 54 | */ |
55 | 55 | public function getItem($index) { |
56 | - if (is_int($index)) |
|
57 | - return $this->content[$index]; |
|
58 | - else { |
|
56 | + if (is_int($index)) { |
|
57 | + return $this->content[$index]; |
|
58 | + } else { |
|
59 | 59 | $elm=$this->getElementById($index, $this->content); |
60 | 60 | return $elm; |
61 | 61 | } |
@@ -87,6 +87,9 @@ |
||
87 | 87 | $this->addItem($function($object)); |
88 | 88 | } |
89 | 89 | |
90 | + /** |
|
91 | + * @param \Closure $callBack |
|
92 | + */ |
|
90 | 93 | public function apply($callBack){ |
91 | 94 | foreach ($this->content as $item){ |
92 | 95 | $callBack($item); |
@@ -13,29 +13,29 @@ discard block |
||
13 | 13 | */ |
14 | 14 | abstract class HtmlCollection extends HtmlDoubleElement { |
15 | 15 | |
16 | - public function __construct($identifier,$tagName="div"){ |
|
17 | - parent::__construct($identifier,$tagName); |
|
16 | + public function __construct($identifier, $tagName="div") { |
|
17 | + parent::__construct($identifier, $tagName); |
|
18 | 18 | $this->content=array(); |
19 | 19 | } |
20 | 20 | |
21 | - public function addItems($items){ |
|
22 | - if(JArray::isAssociative($items)){ |
|
23 | - foreach ($items as $k=>$v){ |
|
24 | - $this->addItem([$k,$v]); |
|
21 | + public function addItems($items) { |
|
22 | + if (JArray::isAssociative($items)) { |
|
23 | + foreach ($items as $k=>$v) { |
|
24 | + $this->addItem([$k, $v]); |
|
25 | 25 | } |
26 | - }else{ |
|
27 | - foreach ($items as $item){ |
|
26 | + }else { |
|
27 | + foreach ($items as $item) { |
|
28 | 28 | $this->addItem($item); |
29 | 29 | } |
30 | 30 | } |
31 | 31 | } |
32 | 32 | |
33 | - public function setItems($items){ |
|
33 | + public function setItems($items) { |
|
34 | 34 | $this->content=$items; |
35 | 35 | return $this; |
36 | 36 | } |
37 | 37 | |
38 | - public function getItems(){ |
|
38 | + public function getItems() { |
|
39 | 39 | return $this->content; |
40 | 40 | } |
41 | 41 | |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | * @param HtmlDoubleElement|string $item |
45 | 45 | * @return \Ajax\common\html\HtmlDoubleElement |
46 | 46 | */ |
47 | - public function addItem($item){ |
|
47 | + public function addItem($item) { |
|
48 | 48 | $itemO=$item; |
49 | - if($this->createCondition($item)===true){ |
|
49 | + if ($this->createCondition($item)===true) { |
|
50 | 50 | $itemO=$this->createItem($item); |
51 | 51 | } |
52 | 52 | $this->addContent($itemO); |
@@ -72,11 +72,11 @@ discard block |
||
72 | 72 | return $this; |
73 | 73 | } |
74 | 74 | |
75 | - public function removeItem($index){ |
|
75 | + public function removeItem($index) { |
|
76 | 76 | return array_splice($this->content, $index, 1); |
77 | 77 | } |
78 | 78 | |
79 | - public function count(){ |
|
79 | + public function count() { |
|
80 | 80 | return \sizeof($this->content); |
81 | 81 | } |
82 | 82 | |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | $this->addItem($function($object)); |
88 | 88 | } |
89 | 89 | |
90 | - public function apply($callBack){ |
|
91 | - foreach ($this->content as $item){ |
|
90 | + public function apply($callBack) { |
|
91 | + foreach ($this->content as $item) { |
|
92 | 92 | $callBack($item); |
93 | 93 | } |
94 | 94 | } |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | protected abstract function createItem($value); |
108 | 108 | |
109 | - protected function createCondition($value){ |
|
109 | + protected function createCondition($value) { |
|
110 | 110 | return \is_object($value)===false; |
111 | 111 | } |
112 | 112 |