@@ -11,7 +11,7 @@ |
||
11 | 11 | } |
12 | 12 | |
13 | 13 | protected function createItem($value) { |
14 | - $elm = new HtmlDoubleElement("", "option"); |
|
14 | + $elm=new HtmlDoubleElement("", "option"); |
|
15 | 15 | $elm->setProperty("value", $value); |
16 | 16 | $elm->setContent($value); |
17 | 17 | return $elm; |
@@ -13,9 +13,9 @@ discard block |
||
13 | 13 | |
14 | 14 | protected $_hasCheckedList; |
15 | 15 | |
16 | - protected $_fireOnInit = false; |
|
16 | + protected $_fireOnInit=false; |
|
17 | 17 | |
18 | - protected $_ckItemChange = ""; |
|
18 | + protected $_ckItemChange=""; |
|
19 | 19 | |
20 | 20 | protected $_maxVisible; |
21 | 21 | |
@@ -23,25 +23,25 @@ discard block |
||
23 | 23 | |
24 | 24 | protected $_visibility; |
25 | 25 | |
26 | - public function __construct($identifier, $items = array()) { |
|
26 | + public function __construct($identifier, $items=array()) { |
|
27 | 27 | parent::__construct($identifier, "div", "ui list"); |
28 | 28 | $this->addItems($items); |
29 | - $this->_hasCheckedList = false; |
|
29 | + $this->_hasCheckedList=false; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | protected function createItem($value) { |
33 | - $count = $this->count(); |
|
34 | - $item = new HtmlListItem("item-" . $this->identifier . "-" . $count, $value); |
|
33 | + $count=$this->count(); |
|
34 | + $item=new HtmlListItem("item-".$this->identifier."-".$count, $value); |
|
35 | 35 | return $item; |
36 | 36 | } |
37 | 37 | |
38 | 38 | public function addHeader($niveau, $content) { |
39 | - $header = new HtmlHeader("header-" . $this->identifier, $niveau, $content, "page"); |
|
39 | + $header=new HtmlHeader("header-".$this->identifier, $niveau, $content, "page"); |
|
40 | 40 | $this->wrap($header); |
41 | 41 | return $header; |
42 | 42 | } |
43 | 43 | |
44 | - public function getItemPart($index, $partName = "header") { |
|
44 | + public function getItemPart($index, $partName="header") { |
|
45 | 45 | return $this->getItem($index)->getPart($partName); |
46 | 46 | } |
47 | 47 | |
@@ -49,15 +49,15 @@ discard block |
||
49 | 49 | return $this->contentAs($tagName); |
50 | 50 | } |
51 | 51 | |
52 | - public function asLinks($hrefs = [], $target = NUll) { |
|
52 | + public function asLinks($hrefs=[], $target=NUll) { |
|
53 | 53 | $this->addToPropertyCtrl("class", "link", array( |
54 | 54 | "link" |
55 | 55 | )); |
56 | 56 | return parent::asLinks($hrefs, $target); |
57 | 57 | } |
58 | 58 | |
59 | - public function addList($items = array()) { |
|
60 | - $list = new HtmlList("", $items); |
|
59 | + public function addList($items=array()) { |
|
60 | + $list=new HtmlList("", $items); |
|
61 | 61 | $list->setClass("list"); |
62 | 62 | return $this->addItem($list); |
63 | 63 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | } |
72 | 72 | |
73 | 73 | protected function getItemToAdd($item) { |
74 | - $itemO = parent::getItemToAdd($item); |
|
74 | + $itemO=parent::getItemToAdd($item); |
|
75 | 75 | if ($itemO instanceof AbstractCheckbox) |
76 | 76 | $itemO->addClass("item"); |
77 | 77 | return $itemO; |
@@ -90,11 +90,11 @@ discard block |
||
90 | 90 | } |
91 | 91 | |
92 | 92 | public function run(JsUtils $js) { |
93 | - if ($this->_hasCheckedList === true) { |
|
94 | - $jsCode = include dirname(__FILE__) . '/../../components/jsTemplates/tplCheckedList.php'; |
|
95 | - $jsCode = \str_replace("%identifier%", "#" . $this->identifier, $jsCode); |
|
96 | - $jsCode = \str_replace("%fireOnInit%", $this->_fireOnInit, $jsCode); |
|
97 | - $jsCode = \str_replace("%onChange%", $this->_ckItemChange, $jsCode); |
|
93 | + if ($this->_hasCheckedList===true) { |
|
94 | + $jsCode=include dirname(__FILE__).'/../../components/jsTemplates/tplCheckedList.php'; |
|
95 | + $jsCode=\str_replace("%identifier%", "#".$this->identifier, $jsCode); |
|
96 | + $jsCode=\str_replace("%fireOnInit%", $this->_fireOnInit, $jsCode); |
|
97 | + $jsCode=\str_replace("%onChange%", $this->_ckItemChange, $jsCode); |
|
98 | 98 | $this->executeOnRun($jsCode); |
99 | 99 | } |
100 | 100 | /* |
@@ -106,19 +106,19 @@ discard block |
||
106 | 106 | } |
107 | 107 | |
108 | 108 | protected function addFollowPoints() { |
109 | - $count = $this->count(); |
|
110 | - for ($i = $this->_maxVisible; $i < $count; $i ++) { |
|
109 | + $count=$this->count(); |
|
110 | + for ($i=$this->_maxVisible; $i<$count; $i++) { |
|
111 | 111 | $this->getItem($i) |
112 | 112 | ->addClass("notVisible") |
113 | 113 | ->setProperty("style", "display: none;"); |
114 | 114 | } |
115 | - $item = $this->addItem("..."); |
|
115 | + $item=$this->addItem("..."); |
|
116 | 116 | $item->addClass("points"); |
117 | - $item->onClick('$(this).hide();$("#' . $this->identifier . ' .notVisible").show();'); |
|
117 | + $item->onClick('$(this).hide();$("#'.$this->identifier.' .notVisible").show();'); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | public function onCkItemChange($jsCode) { |
121 | - $this->_ckItemChange = $jsCode; |
|
121 | + $this->_ckItemChange=$jsCode; |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @param boolean $fireOnInit |
127 | 127 | */ |
128 | 128 | public function setFireOnInit($fireOnInit) { |
129 | - $this->_fireOnInit = $fireOnInit; |
|
129 | + $this->_fireOnInit=$fireOnInit; |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | public function setRelaxed() { |
@@ -150,15 +150,15 @@ discard block |
||
150 | 150 | * {@inheritdoc} |
151 | 151 | * @see \Ajax\common\html\HtmlCollection::compile() |
152 | 152 | */ |
153 | - public function compile(JsUtils $js = NULL, &$view = NULL) { |
|
154 | - if (isset($this->_maxVisible) && $this->_maxVisible < $this->count()) { |
|
153 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
154 | + if (isset($this->_maxVisible) && $this->_maxVisible<$this->count()) { |
|
155 | 155 | $this->addFollowPoints(); |
156 | 156 | if (isset($js)) { |
157 | - $visibility = new Visibility($js); |
|
158 | - $visibility->attach("#" . $this->identifier); |
|
157 | + $visibility=new Visibility($js); |
|
158 | + $visibility->attach("#".$this->identifier); |
|
159 | 159 | $visibility->setOnTopVisible("$(this).children('.notVisible').hide();$(this).find('.points').show();"); |
160 | 160 | $visibility->compile($js, $view); |
161 | - $this->_visibility = $visibility; |
|
161 | + $this->_visibility=$visibility; |
|
162 | 162 | } |
163 | 163 | } |
164 | 164 | return parent::compile($js, $view); |
@@ -173,21 +173,21 @@ discard block |
||
173 | 173 | * @param string $notAllChecked |
174 | 174 | * @return HtmlList |
175 | 175 | */ |
176 | - public function addCheckedList($items = array(), $masterItem = NULL, $values = array(), $notAllChecked = false, $name = null) { |
|
177 | - $count = $this->count(); |
|
178 | - $identifier = $this->identifier . "-" . $count; |
|
176 | + public function addCheckedList($items=array(), $masterItem=NULL, $values=array(), $notAllChecked=false, $name=null) { |
|
177 | + $count=$this->count(); |
|
178 | + $identifier=$this->identifier."-".$count; |
|
179 | 179 | if (isset($masterItem)) { |
180 | 180 | if (\is_array($masterItem)) { |
181 | - $masterO = new HtmlFormCheckbox("master-" . $identifier, @$masterItem[0], @$masterItem[1]); |
|
181 | + $masterO=new HtmlFormCheckbox("master-".$identifier, @$masterItem[0], @$masterItem[1]); |
|
182 | 182 | if (isset($name)) |
183 | 183 | $masterO->setName($name); |
184 | 184 | if (isset($masterItem[1])) { |
185 | - if (\array_search($masterItem[1], $values) !== false) { |
|
185 | + if (\array_search($masterItem[1], $values)!==false) { |
|
186 | 186 | $masterO->getDataField()->setProperty("checked", ""); |
187 | 187 | } |
188 | 188 | } |
189 | 189 | } else { |
190 | - $masterO = new HtmlFormCheckbox("master-" . $identifier, $masterItem); |
|
190 | + $masterO=new HtmlFormCheckbox("master-".$identifier, $masterItem); |
|
191 | 191 | } |
192 | 192 | if ($notAllChecked) { |
193 | 193 | $masterO->getDataField()->addClass("_notAllChecked"); |
@@ -196,36 +196,36 @@ discard block |
||
196 | 196 | $masterO->setClass("item"); |
197 | 197 | $this->addItem($masterO); |
198 | 198 | } |
199 | - $fields = array(); |
|
200 | - $i = 0; |
|
201 | - $this->setFireOnInit(UString::getBooleanStr($this->_fireOnInit || count($items) < 30)); |
|
199 | + $fields=array(); |
|
200 | + $i=0; |
|
201 | + $this->setFireOnInit(UString::getBooleanStr($this->_fireOnInit || count($items)<30)); |
|
202 | 202 | foreach ($items as $val => $caption) { |
203 | - $itemO = new HtmlFormCheckbox($identifier . "-" . $i ++, $caption, $val, "child"); |
|
204 | - if (\array_search($val, $values) !== false) { |
|
203 | + $itemO=new HtmlFormCheckbox($identifier."-".$i++, $caption, $val, "child"); |
|
204 | + if (\array_search($val, $values)!==false) { |
|
205 | 205 | $itemO->getDataField()->setProperty("checked", ""); |
206 | 206 | } |
207 | 207 | if (isset($name)) |
208 | 208 | $itemO->setName($name); |
209 | 209 | $itemO->setClass("item"); |
210 | - $fields[] = $itemO; |
|
210 | + $fields[]=$itemO; |
|
211 | 211 | } |
212 | - if (isset($masterO) === true) { |
|
213 | - $list = new HtmlList("", $fields); |
|
212 | + if (isset($masterO)===true) { |
|
213 | + $list=new HtmlList("", $fields); |
|
214 | 214 | $list->setClass("list"); |
215 | 215 | $masterO->addContent($list); |
216 | 216 | } else { |
217 | 217 | $this->addList($fields); |
218 | 218 | } |
219 | - $this->_hasCheckedList = true; |
|
219 | + $this->_hasCheckedList=true; |
|
220 | 220 | return $this; |
221 | 221 | } |
222 | 222 | |
223 | 223 | public function setIcons($icons) { |
224 | - if (! \is_array($icons)) { |
|
225 | - $icons = \array_fill(0, \sizeof($this->content), $icons); |
|
224 | + if (!\is_array($icons)) { |
|
225 | + $icons=\array_fill(0, \sizeof($this->content), $icons); |
|
226 | 226 | } |
227 | - $max = \min(\sizeof($icons), \sizeof($this->content)); |
|
228 | - for ($i = 0; $i < $max; $i ++) { |
|
227 | + $max=\min(\sizeof($icons), \sizeof($this->content)); |
|
228 | + for ($i=0; $i<$max; $i++) { |
|
229 | 229 | $this->content[$i]->addIcon($icons[$i]); |
230 | 230 | } |
231 | 231 | return $this; |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | * @param mixed $_maxVisible |
245 | 245 | */ |
246 | 246 | public function setMaxVisible($_maxVisible) { |
247 | - $this->_maxVisible = $_maxVisible; |
|
247 | + $this->_maxVisible=$_maxVisible; |
|
248 | 248 | return $this; |
249 | 249 | } |
250 | 250 | } |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | use Ajax\JsUtils; |
12 | 12 | |
13 | 13 | class HtmlTD extends HtmlSemDoubleElement { |
14 | - use TextAlignmentTrait,TableElementTrait; |
|
14 | + use TextAlignmentTrait, TableElementTrait; |
|
15 | 15 | |
16 | 16 | private $_container; |
17 | 17 | |
@@ -19,11 +19,11 @@ discard block |
||
19 | 19 | |
20 | 20 | private $_col; |
21 | 21 | |
22 | - private $_colMerged = false; |
|
22 | + private $_colMerged=false; |
|
23 | 23 | |
24 | - private $_rowMerged = false; |
|
24 | + private $_rowMerged=false; |
|
25 | 25 | |
26 | - private $_deleted = false; |
|
26 | + private $_deleted=false; |
|
27 | 27 | |
28 | 28 | /** |
29 | 29 | * |
@@ -31,12 +31,12 @@ discard block |
||
31 | 31 | * @param mixed $content |
32 | 32 | * @param string $tagName |
33 | 33 | */ |
34 | - public function __construct($identifier, $content = NULL, $tagName = "td") { |
|
34 | + public function __construct($identifier, $content=NULL, $tagName="td") { |
|
35 | 35 | parent::__construct($identifier, $tagName, "", $content); |
36 | - $this->_variations = [ |
|
36 | + $this->_variations=[ |
|
37 | 37 | Variation::COLLAPSING |
38 | 38 | ]; |
39 | - $this->_states = [ |
|
39 | + $this->_states=[ |
|
40 | 40 | State::ACTIVE, |
41 | 41 | State::POSITIVE, |
42 | 42 | State::NEGATIVE, |
@@ -47,13 +47,13 @@ discard block |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | public function setContainer($container, $row, $col) { |
50 | - $this->_container = $container; |
|
51 | - $this->_row = $row; |
|
52 | - $this->_col = $col; |
|
50 | + $this->_container=$container; |
|
51 | + $this->_row=$row; |
|
52 | + $this->_col=$col; |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | public function setValue($value) { |
56 | - $this->content = $value; |
|
56 | + $this->content=$value; |
|
57 | 57 | return $this; |
58 | 58 | } |
59 | 59 | |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | } |
64 | 64 | |
65 | 65 | public function setRowspan($rowspan) { |
66 | - $to = min($this->_container->count(), $this->_row + $rowspan - 1); |
|
67 | - for ($i = $to; $i > $this->_row; $i --) { |
|
66 | + $to=min($this->_container->count(), $this->_row+$rowspan-1); |
|
67 | + for ($i=$to; $i>$this->_row; $i--) { |
|
68 | 68 | $this->_container->toDelete($i, $this->_col); |
69 | 69 | } |
70 | 70 | $this->setProperty("rowspan", $rowspan); |
@@ -72,8 +72,8 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | public function setRowspanned($rowspan) { |
75 | - $to = min($this->_container->count(), $this->_row + $rowspan - 1); |
|
76 | - for ($i = $to; $i > $this->_row; $i --) { |
|
75 | + $to=min($this->_container->count(), $this->_row+$rowspan-1); |
|
76 | + for ($i=$to; $i>$this->_row; $i--) { |
|
77 | 77 | $this->_container->toRowspanned($i, $this->_col); |
78 | 78 | } |
79 | 79 | $this->setProperty("rowspan", $rowspan); |
@@ -81,16 +81,16 @@ discard block |
||
81 | 81 | } |
82 | 82 | |
83 | 83 | public function mergeRow() { |
84 | - if (! $this->_rowMerged) { |
|
85 | - $this->_rowMerged = true; |
|
84 | + if (!$this->_rowMerged) { |
|
85 | + $this->_rowMerged=true; |
|
86 | 86 | return $this->setRowspan($this->_container->count()); |
87 | 87 | } |
88 | 88 | return $this->_container; |
89 | 89 | } |
90 | 90 | |
91 | 91 | public function mergeCol() { |
92 | - if (! $this->_colMerged) { |
|
93 | - $this->_colMerged = true; |
|
92 | + if (!$this->_colMerged) { |
|
93 | + $this->_colMerged=true; |
|
94 | 94 | return $this->setColspan($this->_container->getRow($this->_row) |
95 | 95 | ->count()); |
96 | 96 | } |
@@ -98,25 +98,25 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | public function setColspan($colspan) { |
101 | - $to = min($this->_container->getRow($this->_row)->count(), $this->_col + $colspan - 1); |
|
102 | - for ($i = $to; $i > $this->_col; $i --) { |
|
103 | - $this->_container->delete($this->_row, $this->_col + 1); |
|
101 | + $to=min($this->_container->getRow($this->_row)->count(), $this->_col+$colspan-1); |
|
102 | + for ($i=$to; $i>$this->_col; $i--) { |
|
103 | + $this->_container->delete($this->_row, $this->_col+1); |
|
104 | 104 | } |
105 | 105 | $this->setProperty("colspan", $colspan); |
106 | 106 | return $this->_container; |
107 | 107 | } |
108 | 108 | |
109 | 109 | public function getColspan() { |
110 | - $colspan = 1; |
|
110 | + $colspan=1; |
|
111 | 111 | if (\array_key_exists("colspan", $this->properties)) |
112 | - $colspan = $this->getProperty("colspan"); |
|
112 | + $colspan=$this->getProperty("colspan"); |
|
113 | 113 | return $colspan; |
114 | 114 | } |
115 | 115 | |
116 | 116 | public function getRowspan() { |
117 | - $rowspan = 1; |
|
117 | + $rowspan=1; |
|
118 | 118 | if (\array_key_exists("rowspan", $this->properties)) |
119 | - $rowspan = $this->getProperty("rowspan"); |
|
119 | + $rowspan=$this->getProperty("rowspan"); |
|
120 | 120 | return $rowspan; |
121 | 121 | } |
122 | 122 | |
@@ -132,16 +132,16 @@ discard block |
||
132 | 132 | return $this; |
133 | 133 | } |
134 | 134 | |
135 | - public function setSelectable($href = "#") { |
|
135 | + public function setSelectable($href="#") { |
|
136 | 136 | if (\is_string($this->content)) { |
137 | - $this->content = new HtmlLink("", $href, $this->content); |
|
137 | + $this->content=new HtmlLink("", $href, $this->content); |
|
138 | 138 | } |
139 | 139 | return $this->addToProperty("class", "selectable"); |
140 | 140 | } |
141 | 141 | |
142 | 142 | public function setWidth($width) { |
143 | 143 | if (\is_int($width)) { |
144 | - $width = Wide::getConstants()["W" . $width]; |
|
144 | + $width=Wide::getConstants()["W".$width]; |
|
145 | 145 | } |
146 | 146 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
147 | 147 | return $this->addToPropertyCtrl("class", "wide", array( |
@@ -150,12 +150,12 @@ discard block |
||
150 | 150 | } |
151 | 151 | |
152 | 152 | public function toDelete() { |
153 | - $this->_deleted = true; |
|
153 | + $this->_deleted=true; |
|
154 | 154 | return $this; |
155 | 155 | } |
156 | 156 | |
157 | - public function compile(JsUtils $js = NULL, &$view = NULL) { |
|
158 | - if (! $this->_deleted) |
|
157 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
158 | + if (!$this->_deleted) |
|
159 | 159 | return parent::compile($js, $view); |
160 | 160 | } |
161 | 161 | } |
@@ -16,11 +16,11 @@ discard block |
||
16 | 16 | class HtmlGridSystem extends HtmlBsDoubleElement { |
17 | 17 | private $rows; |
18 | 18 | |
19 | - public function __construct($identifier,$numRows=1,$numCols=NULL){ |
|
20 | - parent::__construct($identifier,"div"); |
|
19 | + public function __construct($identifier, $numRows=1, $numCols=NULL) { |
|
20 | + parent::__construct($identifier, "div"); |
|
21 | 21 | $this->setProperty("class", "container-fluid"); |
22 | 22 | $this->rows=array(); |
23 | - $this->setNumRows($numRows,$numCols); |
|
23 | + $this->setNumRows($numRows, $numCols); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | * @param int $numCols |
29 | 29 | * @return \Ajax\bootstrap\html\content\HtmlGridRow |
30 | 30 | */ |
31 | - public function addRow($numCols=NULL){ |
|
32 | - $row=new HtmlGridRow($this->identifier."-row-".(sizeof($this->rows)+1),$numCols); |
|
31 | + public function addRow($numCols=NULL) { |
|
32 | + $row=new HtmlGridRow($this->identifier."-row-".(sizeof($this->rows)+1), $numCols); |
|
33 | 33 | $this->rows[]=$row; |
34 | 34 | return $row; |
35 | 35 | } |
@@ -40,10 +40,10 @@ discard block |
||
40 | 40 | * @param boolean $force add the row at $index if true |
41 | 41 | * @return \Ajax\bootstrap\html\content\HtmlGridRow |
42 | 42 | */ |
43 | - public function getRow($index,$force=true){ |
|
44 | - if($index<sizeof($this->rows)){ |
|
43 | + public function getRow($index, $force=true) { |
|
44 | + if ($index<sizeof($this->rows)) { |
|
45 | 45 | $result=$this->rows[$index-1]; |
46 | - }else if ($force){ |
|
46 | + } else if ($force) { |
|
47 | 47 | $this->setNumRows($index); |
48 | 48 | $result=$this->rows[$index-1]; |
49 | 49 | } |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | * @param int $numCols |
57 | 57 | * @return \Ajax\bootstrap\html\HtmlGridSystem |
58 | 58 | */ |
59 | - public function setNumRows($numRows,$numCols=NULL){ |
|
60 | - for($i=sizeof($this->rows);$i<$numRows;$i++){ |
|
59 | + public function setNumRows($numRows, $numCols=NULL) { |
|
60 | + for ($i=sizeof($this->rows); $i<$numRows; $i++) { |
|
61 | 61 | $this->addRow($numCols); |
62 | 62 | } |
63 | 63 | return $this; |
@@ -69,10 +69,10 @@ discard block |
||
69 | 69 | * @param boolean $force add the cell at $row,$col if true |
70 | 70 | * @return HtmlGridCol |
71 | 71 | */ |
72 | - public function getCell($row,$col,$force=true){ |
|
73 | - $row=$this->getRow($row,$force); |
|
74 | - if(isset($row)){ |
|
75 | - $col=$row->getCol($col,$force); |
|
72 | + public function getCell($row, $col, $force=true) { |
|
73 | + $row=$this->getRow($row, $force); |
|
74 | + if (isset($row)) { |
|
75 | + $col=$row->getCol($col, $force); |
|
76 | 76 | } |
77 | 77 | return $col; |
78 | 78 | } |
@@ -82,22 +82,22 @@ discard block |
||
82 | 82 | * @param int $col |
83 | 83 | * @return HtmlGridCol |
84 | 84 | */ |
85 | - public function getCellAt($row,$col,$force=true){ |
|
86 | - $row=$this->getRow($row,$force); |
|
87 | - if(isset($row)){ |
|
88 | - $col=$row->getColAt($col,$force); |
|
85 | + public function getCellAt($row, $col, $force=true) { |
|
86 | + $row=$this->getRow($row, $force); |
|
87 | + if (isset($row)) { |
|
88 | + $col=$row->getColAt($col, $force); |
|
89 | 89 | } |
90 | 90 | return $col; |
91 | 91 | } |
92 | 92 | |
93 | 93 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
94 | - foreach ($this->rows as $row){ |
|
94 | + foreach ($this->rows as $row) { |
|
95 | 95 | $this->addContent($row); |
96 | 96 | } |
97 | - return parent::compile($js,$view); |
|
97 | + return parent::compile($js, $view); |
|
98 | 98 | } |
99 | - public function setContentForAll($content){ |
|
100 | - foreach ($this->rows as $row){ |
|
99 | + public function setContentForAll($content) { |
|
100 | + foreach ($this->rows as $row) { |
|
101 | 101 | $row->setContentForAll($content); |
102 | 102 | } |
103 | 103 | } |
@@ -14,6 +14,6 @@ |
||
14 | 14 | |
15 | 15 | public function __construct(JsUtils $js) { |
16 | 16 | parent::__construct($js); |
17 | - $this->uiName = "tabs"; |
|
17 | + $this->uiName="tabs"; |
|
18 | 18 | } |
19 | 19 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | |
17 | 17 | public function __construct(JsUtils $js) { |
18 | 18 | parent::__construct($js); |
19 | - $this->uiName = "autocomplete"; |
|
19 | + $this->uiName="autocomplete"; |
|
20 | 20 | $this->setParam("minLength", 3); |
21 | 21 | } |
22 | 22 | |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function setAjaxSource($url) { |
31 | 31 | if (JString::startsWith($url, "/")) { |
32 | - $url = $this->js->getUrl($url); |
|
32 | + $url=$this->js->getUrl($url); |
|
33 | 33 | } |
34 | - $ajax = "%function (request, response) { |
|
34 | + $ajax="%function (request, response) { |
|
35 | 35 | $.ajax({ |
36 | 36 | url: '{$url}', |
37 | 37 | dataType: 'jsonp', |
@@ -52,11 +52,11 @@ discard block |
||
52 | 52 | * @return $this |
53 | 53 | */ |
54 | 54 | public function setSource($source) { |
55 | - $source = str_ireplace(array( |
|
55 | + $source=str_ireplace(array( |
|
56 | 56 | "\"", |
57 | 57 | "'" |
58 | 58 | ), "%quote%", $source); |
59 | - return $this->setParam("source", "%" . $source . "%"); |
|
59 | + return $this->setParam("source", "%".$source."%"); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | |
16 | 16 | public function __construct(JsUtils $js) { |
17 | 17 | parent::__construct($js); |
18 | - $this->uiName = "button"; |
|
18 | + $this->uiName="button"; |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | public function setIcons($value) { |
44 | 44 | if (is_string($value)) { |
45 | 45 | if (JString::startsWith($value, "{")); |
46 | - $value = "%" . $value . "%"; |
|
46 | + $value="%".$value."%"; |
|
47 | 47 | } |
48 | 48 | return $this->setParam("icons", $value); |
49 | 49 | } |
@@ -14,29 +14,29 @@ discard block |
||
14 | 14 | |
15 | 15 | protected $attachTo; |
16 | 16 | |
17 | - protected $buttons = array(); |
|
17 | + protected $buttons=array(); |
|
18 | 18 | |
19 | 19 | public function __construct(JsUtils $js) { |
20 | 20 | parent::__construct($js); |
21 | - $this->params = array( |
|
21 | + $this->params=array( |
|
22 | 22 | "dialogClass" => "no-close" |
23 | 23 | ); |
24 | 24 | $this->addCancelBtn("Annuler"); |
25 | 25 | } |
26 | 26 | |
27 | 27 | public function getScript() { |
28 | - $allParams = $this->params; |
|
29 | - $jsonButtons = array(); |
|
28 | + $allParams=$this->params; |
|
29 | + $jsonButtons=array(); |
|
30 | 30 | foreach ($this->buttons as $button) { |
31 | - $jsonButtons[] = $button->getParams(); |
|
31 | + $jsonButtons[]=$button->getParams(); |
|
32 | 32 | } |
33 | - $allParams["buttons"] = $jsonButtons; |
|
34 | - $this->jquery_code_for_compile[] = "$( '" . $this->attachTo . "' ).dialog(" . $this->getParamsAsJSON($allParams) . ");"; |
|
35 | - $result = implode("", $this->jquery_code_for_compile); |
|
36 | - $result = str_ireplace("\"%", "", $result); |
|
37 | - $result = str_ireplace("%\"", "", $result); |
|
38 | - $result = str_ireplace("\\n", "", $result); |
|
39 | - $result = str_ireplace("\\t", "", $result); |
|
33 | + $allParams["buttons"]=$jsonButtons; |
|
34 | + $this->jquery_code_for_compile[]="$( '".$this->attachTo."' ).dialog(".$this->getParamsAsJSON($allParams).");"; |
|
35 | + $result=implode("", $this->jquery_code_for_compile); |
|
36 | + $result=str_ireplace("\"%", "", $result); |
|
37 | + $result=str_ireplace("%\"", "", $result); |
|
38 | + $result=str_ireplace("\\n", "", $result); |
|
39 | + $result=str_ireplace("\\t", "", $result); |
|
40 | 40 | return $result; |
41 | 41 | } |
42 | 42 | |
@@ -46,26 +46,26 @@ discard block |
||
46 | 46 | * identifiant CSS |
47 | 47 | */ |
48 | 48 | public function attach($identifier) { |
49 | - $this->attachTo = $identifier; |
|
49 | + $this->attachTo=$identifier; |
|
50 | 50 | } |
51 | 51 | |
52 | - public function addCancelBtn($caption = "Annuler", $position = NULL) { |
|
52 | + public function addCancelBtn($caption="Annuler", $position=NULL) { |
|
53 | 53 | $this->insertBtn(DialogButton::cancelButton($caption), $position); |
54 | 54 | } |
55 | 55 | |
56 | - public function addSubmitBtn(JsUtils $js, $url, $form, $responseElement, $caption = "Valider", $position = NULL) { |
|
56 | + public function addSubmitBtn(JsUtils $js, $url, $form, $responseElement, $caption="Valider", $position=NULL) { |
|
57 | 57 | $this->insertBtn(DialogButton::submitButton($js, $url, $form, $responseElement, $caption), $position); |
58 | 58 | } |
59 | 59 | |
60 | - public function addButton($caption, $jsCode, $position = NULL) { |
|
60 | + public function addButton($caption, $jsCode, $position=NULL) { |
|
61 | 61 | $this->insertBtn(new DialogButton($caption, $jsCode), $position); |
62 | 62 | } |
63 | 63 | |
64 | - private function insertBtn($insert, $position = NULL) { |
|
65 | - if ($position != NULL) { |
|
66 | - $this->buttons = array_splice($this->buttons, $position, 0, $insert); |
|
64 | + private function insertBtn($insert, $position=NULL) { |
|
65 | + if ($position!=NULL) { |
|
66 | + $this->buttons=array_splice($this->buttons, $position, 0, $insert); |
|
67 | 67 | } else { |
68 | - $this->buttons[] = $insert; |
|
68 | + $this->buttons[]=$insert; |
|
69 | 69 | } |
70 | 70 | } |
71 | 71 | } |
@@ -14,6 +14,6 @@ |
||
14 | 14 | |
15 | 15 | public function __construct(JsUtils $js) { |
16 | 16 | parent::__construct($js); |
17 | - $this->uiName = "spinner"; |
|
17 | + $this->uiName="spinner"; |
|
18 | 18 | } |
19 | 19 | } |