@@ -16,12 +16,12 @@ discard block |
||
| 16 | 16 | * @version 1.001 |
| 17 | 17 | */ |
| 18 | 18 | class HtmlCarousel extends BaseHtml { |
| 19 | - protected $indicators=array (); |
|
| 20 | - protected $slides=array (); |
|
| 19 | + protected $indicators=array(); |
|
| 20 | + protected $slides=array(); |
|
| 21 | 21 | protected $leftControl=""; |
| 22 | 22 | protected $rightControl=""; |
| 23 | 23 | protected $_base=""; |
| 24 | - protected $_glyphs=array (); |
|
| 24 | + protected $_glyphs=array(); |
|
| 25 | 25 | |
| 26 | 26 | public function __construct($identifier, $images=NULL) { |
| 27 | 27 | parent::__construct($identifier); |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | public function setBase($_base) { |
| 41 | - foreach ($this->slides as $slide){ |
|
| 41 | + foreach ($this->slides as $slide) { |
|
| 42 | 42 | $imgSrc=$slide->getImageSrc(); |
| 43 | 43 | $slide->setImageSrc(str_replace($this->_base.$imgSrc, $_base.$imgSrc, $imgSrc)); |
| 44 | 44 | } |
@@ -93,9 +93,9 @@ discard block |
||
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | public function addImage($imageSrc, $imageAlt="", $caption=NULL, $description=NULL) { |
| 96 | - if(\is_array($imageSrc)){ |
|
| 97 | - $this->addImage($imageSrc[0],@$imageSrc[1],@$imageSrc[2],@$imageSrc[3]); |
|
| 98 | - }else{ |
|
| 96 | + if (\is_array($imageSrc)) { |
|
| 97 | + $this->addImage($imageSrc[0], @$imageSrc[1], @$imageSrc[2], @$imageSrc[3]); |
|
| 98 | + } else { |
|
| 99 | 99 | $image=new HtmlCarouselItem("item-".$this->identifier); |
| 100 | 100 | $image->setImageSrc($this->_base.$imageSrc); |
| 101 | 101 | $image->setImageAlt($imageAlt); |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | */ |
| 119 | 119 | public function fromArray($array) { |
| 120 | 120 | if (\is_array($array) && sizeof($array)>0) { |
| 121 | - foreach ( $array as $value ) { |
|
| 121 | + foreach ($array as $value) { |
|
| 122 | 122 | if (\is_array($value)) { |
| 123 | 123 | $this->addImage($value ["src"], @$value ["alt"], @$value ["caption"], @$value ["description"]); |
| 124 | 124 | } else { |
@@ -41,15 +41,15 @@ discard block |
||
| 41 | 41 | * @param boolean $autoActive sets the last element's class to <b>active</b> if true |
| 42 | 42 | * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()} |
| 43 | 43 | */ |
| 44 | - public function __construct($identifier,$elements=array(),$autoActive=true,$startIndex=0,$hrefFunction=NULL){ |
|
| 45 | - parent::__construct($identifier,"ol"); |
|
| 44 | + public function __construct($identifier, $elements=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL) { |
|
| 45 | + parent::__construct($identifier, "ol"); |
|
| 46 | 46 | $this->startIndex=$startIndex; |
| 47 | 47 | $this->setProperty("class", "breadcrumb"); |
| 48 | 48 | $this->content=array(); |
| 49 | 49 | $this->autoActive=$autoActive; |
| 50 | 50 | $this->absolutePaths; |
| 51 | - $this->_hrefFunction=function ($e){return $e->getContent();}; |
|
| 52 | - if(isset($hrefFunction)){ |
|
| 51 | + $this->_hrefFunction=function($e) {return $e->getContent(); }; |
|
| 52 | + if (isset($hrefFunction)) { |
|
| 53 | 53 | $this->_hrefFunction=$hrefFunction; |
| 54 | 54 | } |
| 55 | 55 | $this->addElements($elements); |
@@ -60,43 +60,43 @@ discard block |
||
| 60 | 60 | * @param string $href |
| 61 | 61 | * @return \Ajax\bootstrap\html\HtmlLink |
| 62 | 62 | */ |
| 63 | - public function addElement($element,$href="",$glyph=NULL){ |
|
| 63 | + public function addElement($element, $href="", $glyph=NULL) { |
|
| 64 | 64 | $size=sizeof($this->content); |
| 65 | - if(\is_array($element)){ |
|
| 65 | + if (\is_array($element)) { |
|
| 66 | 66 | $elm=new HtmlLink("lnk-".$this->identifier."-".$size); |
| 67 | 67 | $elm->fromArray($element); |
| 68 | - }else if($element instanceof HtmlLink){ |
|
| 68 | + } else if ($element instanceof HtmlLink) { |
|
| 69 | 69 | $elm=$element; |
| 70 | - }else{ |
|
| 71 | - $elm=new HtmlLink("lnk-".$this->identifier."-".$size,$href,$element); |
|
| 72 | - if(isset($glyph)){ |
|
| 70 | + } else { |
|
| 71 | + $elm=new HtmlLink("lnk-".$this->identifier."-".$size, $href, $element); |
|
| 72 | + if (isset($glyph)) { |
|
| 73 | 73 | $elm->wrapContentWithGlyph($glyph); |
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | - $elm->wrap("<li>","</li>"); |
|
| 76 | + $elm->wrap("<li>", "</li>"); |
|
| 77 | 77 | $this->content[]=$elm; |
| 78 | 78 | $elm->setProperty($this->attr, $this->getHref($size)); |
| 79 | 79 | return $elm; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - public function setActive($index=null){ |
|
| 83 | - if(!isset($index)){ |
|
| 82 | + public function setActive($index=null) { |
|
| 83 | + if (!isset($index)) { |
|
| 84 | 84 | $index=sizeof($this->content)-1; |
| 85 | 85 | } |
| 86 | - $li=new HtmlBsDoubleElement("","li"); |
|
| 86 | + $li=new HtmlBsDoubleElement("", "li"); |
|
| 87 | 87 | $li->setClass("active"); |
| 88 | 88 | $li->setContent($this->content[$index]->getContent()); |
| 89 | 89 | $this->content[$index]=$li; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - public function addElements($elements){ |
|
| 93 | - foreach ( $elements as $element ) { |
|
| 92 | + public function addElements($elements) { |
|
| 93 | + foreach ($elements as $element) { |
|
| 94 | 94 | $this->addElement($element); |
| 95 | 95 | } |
| 96 | 96 | return $this; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - public function fromArray($array){ |
|
| 99 | + public function fromArray($array) { |
|
| 100 | 100 | $array=parent::fromArray($array); |
| 101 | 101 | $this->addElements($array); |
| 102 | 102 | return $array; |
@@ -108,14 +108,14 @@ discard block |
||
| 108 | 108 | * @param string $separator |
| 109 | 109 | * @return string |
| 110 | 110 | */ |
| 111 | - public function getHref($index=null,$separator="/"){ |
|
| 112 | - if(!isset($index)){ |
|
| 111 | + public function getHref($index=null, $separator="/") { |
|
| 112 | + if (!isset($index)) { |
|
| 113 | 113 | $index=sizeof($this->content); |
| 114 | 114 | } |
| 115 | - if($this->absolutePaths===true){ |
|
| 115 | + if ($this->absolutePaths===true) { |
|
| 116 | 116 | return $this->_hrefFunction($this->content[$index]); |
| 117 | - }else{ |
|
| 118 | - return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1)); |
|
| 117 | + } else { |
|
| 118 | + return $this->root.implode($separator, array_slice(array_map(function($e) {return $this->_hrefFunction($e); }, $this->content), $this->startIndex, $index+1)); |
|
| 119 | 119 | } |
| 120 | 120 | } |
| 121 | 121 | |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | * @see \Ajax\bootstrap\html\BaseHtml::compile() |
| 125 | 125 | */ |
| 126 | 126 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 127 | - if($this->autoActive){ |
|
| 127 | + if ($this->autoActive) { |
|
| 128 | 128 | $this->setActive(); |
| 129 | 129 | } |
| 130 | 130 | return parent::compile($js, $view); |
@@ -142,19 +142,19 @@ discard block |
||
| 142 | 142 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
| 143 | 143 | */ |
| 144 | 144 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
| 145 | - foreach ($this->content as $element){ |
|
| 146 | - $element->on($event,$jsCode,$stopPropagation,$preventDefault); |
|
| 145 | + foreach ($this->content as $element) { |
|
| 146 | + $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
|
| 147 | 147 | } |
| 148 | 148 | return $this; |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | public function setAutoActive($autoActive) { |
| 152 | - $this->autoActive = $autoActive; |
|
| 152 | + $this->autoActive=$autoActive; |
|
| 153 | 153 | return $this; |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
| 157 | - foreach ($this->content as $element){ |
|
| 157 | + foreach ($this->content as $element) { |
|
| 158 | 158 | $element->_ajaxOn($operation, $event, $url, $responseElement, $parameters); |
| 159 | 159 | } |
| 160 | 160 | return $this; |
@@ -166,18 +166,18 @@ discard block |
||
| 166 | 166 | * @param string $targetSelector the target of the get |
| 167 | 167 | * @return HtmlBreadcrumbs |
| 168 | 168 | */ |
| 169 | - public function autoGetOnClick($targetSelector){ |
|
| 170 | - return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr)); |
|
| 169 | + public function autoGetOnClick($targetSelector) { |
|
| 170 | + return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr)); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - public function contentAsString(){ |
|
| 174 | - if($this->autoActive){ |
|
| 173 | + public function contentAsString() { |
|
| 174 | + if ($this->autoActive) { |
|
| 175 | 175 | $this->setActive(); |
| 176 | 176 | } |
| 177 | 177 | return parent::contentAsString(); |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - public function getElement($index){ |
|
| 180 | + public function getElement($index) { |
|
| 181 | 181 | return $this->content[$index]; |
| 182 | 182 | } |
| 183 | 183 | |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | * @param mixed $glyph |
| 187 | 187 | * @param int $index |
| 188 | 188 | */ |
| 189 | - public function addGlyph($glyph,$index=0){ |
|
| 189 | + public function addGlyph($glyph, $index=0) { |
|
| 190 | 190 | $elm=$this->getElement($index); |
| 191 | 191 | return $elm->wrapContentWithGlyph($glyph); |
| 192 | 192 | } |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | * @param Dispatcher $dispatcher the request dispatcher |
| 198 | 198 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
| 199 | 199 | */ |
| 200 | - public function fromDispatcher(JsUtils $js,$dispatcher,$startIndex=0){ |
|
| 200 | + public function fromDispatcher(JsUtils $js, $dispatcher, $startIndex=0) { |
|
| 201 | 201 | $this->startIndex=$startIndex; |
| 202 | 202 | return $this->addElements($js->fromDispatcher($dispatcher)); |
| 203 | 203 | } |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
| 210 | 210 | */ |
| 211 | 211 | public function setHrefFunction($_hrefFunction) { |
| 212 | - $this->_hrefFunction = $_hrefFunction; |
|
| 212 | + $this->_hrefFunction=$_hrefFunction; |
|
| 213 | 213 | return $this; |
| 214 | 214 | } |
| 215 | 215 | |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | private $elements; |
| 9 | 9 | |
| 10 | 10 | public function __construct($objects=NULL) { |
| 11 | - $this->elements=array (); |
|
| 11 | + $this->elements=array(); |
|
| 12 | 12 | if (isset($objects)) { |
| 13 | 13 | if (\is_array($objects)) { |
| 14 | 14 | $this->addResults($objects); |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | $this->elements[]=$object; |
| 24 | 24 | return $this; |
| 25 | 25 | } |
| 26 | - if (\is_array($object) === false) { |
|
| 27 | - $object=[ "title" => $object ]; |
|
| 26 | + if (\is_array($object)===false) { |
|
| 27 | + $object=["title" => $object]; |
|
| 28 | 28 | } |
| 29 | 29 | $this->elements[]=new SearchResult($object); |
| 30 | 30 | return $this; |
@@ -34,9 +34,9 @@ discard block |
||
| 34 | 34 | if (!\is_array($objects)) { |
| 35 | 35 | return $this->addResult($objects); |
| 36 | 36 | } |
| 37 | - if (JArray::dimension($objects) === 1) { |
|
| 38 | - foreach ( $objects as $object ) { |
|
| 39 | - $this->addResult([ "title" => $object ]); |
|
| 37 | + if (JArray::dimension($objects)===1) { |
|
| 38 | + foreach ($objects as $object) { |
|
| 39 | + $this->addResult(["title" => $object]); |
|
| 40 | 40 | } |
| 41 | 41 | } else |
| 42 | 42 | $this->elements=\array_merge($this->elements, $objects); |
@@ -44,21 +44,21 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | public function _search($query, $field="title") { |
| 47 | - $result=array (); |
|
| 48 | - foreach ( $this->elements as $element ) { |
|
| 47 | + $result=array(); |
|
| 48 | + foreach ($this->elements as $element) { |
|
| 49 | 49 | if ($element instanceof SearchResult) { |
| 50 | - if ($element->search($query, $field) !== false) |
|
| 50 | + if ($element->search($query, $field)!==false) |
|
| 51 | 51 | $result[]=$element->asArray(); |
| 52 | 52 | } else { |
| 53 | 53 | if (\array_key_exists($field, $element)) { |
| 54 | 54 | $value=$element[$field]; |
| 55 | - if (\stripos($value, $query) !== false) { |
|
| 55 | + if (\stripos($value, $query)!==false) { |
|
| 56 | 56 | $result[]=$element; |
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | - if (\sizeof($result) > 0) { |
|
| 61 | + if (\sizeof($result)>0) { |
|
| 62 | 62 | return $result; |
| 63 | 63 | } |
| 64 | 64 | return false; |
@@ -66,13 +66,13 @@ discard block |
||
| 66 | 66 | |
| 67 | 67 | public function search($query, $field="title") { |
| 68 | 68 | $result=$this->_search($query, $field); |
| 69 | - if ($result === false) |
|
| 69 | + if ($result===false) |
|
| 70 | 70 | $result=NULL; |
| 71 | 71 | return new SearchResults($result); |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | public function __toString() { |
| 75 | - $result="\"results\": " . \json_encode($this->elements); |
|
| 75 | + $result="\"results\": ".\json_encode($this->elements); |
|
| 76 | 76 | return $result; |
| 77 | 77 | } |
| 78 | 78 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | public function getResponse() { |
| 84 | - return "{" . $this . "}"; |
|
| 84 | + return "{".$this."}"; |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | /** |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | protected $class="dropdown-toggle"; |
| 18 | 18 | protected $mClass="dropdown"; |
| 19 | 19 | protected $mTagName="div"; |
| 20 | - protected $items=array (); |
|
| 20 | + protected $items=array(); |
|
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | 23 | * |
@@ -87,9 +87,9 @@ discard block |
||
| 87 | 87 | * @return HtmlDropdownItem |
| 88 | 88 | */ |
| 89 | 89 | public function addItem($caption, $href="#") { |
| 90 | - if($caption instanceof HtmlDropdownItem){ |
|
| 90 | + if ($caption instanceof HtmlDropdownItem) { |
|
| 91 | 91 | $item=$caption; |
| 92 | - }else{ |
|
| 92 | + } else { |
|
| 93 | 93 | $iid=$this->getItemsCount()+1; |
| 94 | 94 | $item=new HtmlDropdownItem($this->identifier."-dropdown-item-".$iid); |
| 95 | 95 | $item->setCaption($caption)->setHref($href); |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | public function addItems($items) { |
| 110 | 110 | $iid=$this->getItemsCount()+1; |
| 111 | 111 | if (\is_array($items)) { |
| 112 | - foreach ( $items as $item ) { |
|
| 112 | + foreach ($items as $item) { |
|
| 113 | 113 | if (is_string($item)) { |
| 114 | 114 | $this->addItem($item); |
| 115 | 115 | } else if (\is_array($item)) { |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | public function setItems($items) { |
| 139 | - $this->items=array (); |
|
| 139 | + $this->items=array(); |
|
| 140 | 140 | $this->addItems($items); |
| 141 | 141 | } |
| 142 | 142 | |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | */ |
| 172 | 172 | public function run(JsUtils $js) { |
| 173 | 173 | if ($this->getProperty("role")==="nav") { |
| 174 | - foreach ( $this->items as $dropdownItem ) { |
|
| 174 | + foreach ($this->items as $dropdownItem) { |
|
| 175 | 175 | $dropdownItem->runNav($js); |
| 176 | 176 | } |
| 177 | 177 | } |
@@ -263,9 +263,9 @@ discard block |
||
| 263 | 263 | /* (non-PHPdoc) |
| 264 | 264 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
| 265 | 265 | */ |
| 266 | - public function on($event, $jsCode, $stopPropagation = false, $preventDefault = false) { |
|
| 267 | - foreach ($this->items as $item){ |
|
| 268 | - $item->on($event, $jsCode,$stopPropagation,$preventDefault); |
|
| 266 | + public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
|
| 267 | + foreach ($this->items as $item) { |
|
| 268 | + $item->on($event, $jsCode, $stopPropagation, $preventDefault); |
|
| 269 | 269 | } |
| 270 | 270 | } |
| 271 | 271 | |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | public function __construct($identifier, $brand="Brand", $brandHref="#") { |
| 33 | 33 | parent::__construct($identifier); |
| 34 | 34 | $this->_template=include 'templates/tplNavbar.php'; |
| 35 | - $this->navZones=array (); |
|
| 35 | + $this->navZones=array(); |
|
| 36 | 36 | $this->class="navbar-default"; |
| 37 | 37 | $this->brand=$brand; |
| 38 | 38 | $this->brandHref=$brandHref; |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | public function setBrandImage($imageSrc) { |
| 63 | - $this->brandImage=PhalconUtils::image(array ( |
|
| 63 | + $this->brandImage=PhalconUtils::image(array( |
|
| 64 | 64 | $imageSrc, |
| 65 | 65 | "alt" => $this->brand |
| 66 | 66 | )); |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | public function setNavZones($navZones) { |
| 109 | 109 | if (\is_array($navZones)) { |
| 110 | - foreach ( $navZones as $zoneType => $zoneArray ) { |
|
| 110 | + foreach ($navZones as $zoneType => $zoneArray) { |
|
| 111 | 111 | if (is_string($zoneType)) { |
| 112 | 112 | $zone=$this->addZone($zoneType); |
| 113 | 113 | $zone->fromArray($zoneArray); |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | if ($index<$nb) |
| 148 | 148 | $zone=$this->navZones [$index]; |
| 149 | 149 | } else { |
| 150 | - for($i=0; $i<$nb; $i++) { |
|
| 150 | + for ($i=0; $i<$nb; $i++) { |
|
| 151 | 151 | if ($this->navZones [$i]->getIdentifier()===$index) { |
| 152 | 152 | $zone=$this->navZones [$i]; |
| 153 | 153 | break; |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | public function run(JsUtils $js) { |
| 161 | - foreach ( $this->navZones as $zone ) { |
|
| 161 | + foreach ($this->navZones as $zone) { |
|
| 162 | 162 | $zone->run($js); |
| 163 | 163 | } |
| 164 | 164 | if ($this->hasScrollspy) { |
@@ -180,9 +180,9 @@ discard block |
||
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | public function setFluid($fluid) { |
| 183 | - if($fluid===true){ |
|
| 183 | + if ($fluid===true) { |
|
| 184 | 184 | $this->fluid="container-fluid"; |
| 185 | - }else{ |
|
| 185 | + } else { |
|
| 186 | 186 | $this->fluid="container"; |
| 187 | 187 | } |
| 188 | 188 | return $this; |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | class HtmlModal extends BaseHtml { |
| 15 | 15 | protected $title="Titre de ma boîte"; |
| 16 | 16 | protected $content=""; |
| 17 | - protected $buttons=array (); |
|
| 17 | + protected $buttons=array(); |
|
| 18 | 18 | protected $showOnStartup=false; |
| 19 | 19 | protected $draggable=false; |
| 20 | 20 | protected $validCondition=NULL; |
@@ -27,10 +27,10 @@ discard block |
||
| 27 | 27 | public function __construct($identifier, $title="", $content="", $buttonCaptions=array()) { |
| 28 | 28 | parent::__construct($identifier); |
| 29 | 29 | $this->_template=include 'templates/tplModal.php'; |
| 30 | - $this->buttons=array (); |
|
| 30 | + $this->buttons=array(); |
|
| 31 | 31 | $this->title=$title; |
| 32 | 32 | $this->content=$content; |
| 33 | - foreach ( $buttonCaptions as $button ) { |
|
| 33 | + foreach ($buttonCaptions as $button) { |
|
| 34 | 34 | $this->addButton($button); |
| 35 | 35 | } |
| 36 | 36 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * @param string $value |
| 66 | 66 | * @return HtmlButton |
| 67 | 67 | */ |
| 68 | - public function addOkayButton($value="Okay",$jsCode="") { |
|
| 68 | + public function addOkayButton($value="Okay", $jsCode="") { |
|
| 69 | 69 | $btn=$this->addButton($value, "btn-primary"); |
| 70 | 70 | $btn->onClick("if(".$this->getValidCondition()."){ ".$jsCode."$('#".$this->identifier."').modal('hide');}"); |
| 71 | 71 | return $btn; |
@@ -114,8 +114,8 @@ discard block |
||
| 114 | 114 | * @param string $viewName |
| 115 | 115 | * @param $params The parameters to pass to the view |
| 116 | 116 | */ |
| 117 | - public function renderView(JsUtils $js,$initialController,$viewName, $params=array()) { |
|
| 118 | - $this->content=$js->renderContent($initialController, $viewName,$params); |
|
| 117 | + public function renderView(JsUtils $js, $initialController, $viewName, $params=array()) { |
|
| 118 | + $this->content=$js->renderContent($initialController, $viewName, $params); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | /** |
@@ -126,8 +126,8 @@ discard block |
||
| 126 | 126 | * @param string $actionName the action name |
| 127 | 127 | * @param array $params |
| 128 | 128 | */ |
| 129 | - public function forward(JsUtils $js,$initialControllerInstance,$controllerName,$actionName,$params=NULL){ |
|
| 130 | - $this->content=$js->forward($initialControllerInstance, $controllerName, $actionName,$params); |
|
| 129 | + public function forward(JsUtils $js, $initialControllerInstance, $controllerName, $actionName, $params=NULL) { |
|
| 130 | + $this->content=$js->forward($initialControllerInstance, $controllerName, $actionName, $params); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /* |
@@ -135,10 +135,10 @@ discard block |
||
| 135 | 135 | * @see BaseHtml::run() |
| 136 | 136 | */ |
| 137 | 137 | public function run(JsUtils $js) { |
| 138 | - if($this->content instanceof BaseHtml){ |
|
| 138 | + if ($this->content instanceof BaseHtml) { |
|
| 139 | 139 | $this->content->run($js); |
| 140 | 140 | } |
| 141 | - $this->_bsComponent=$js->bootstrap()->modal("#".$this->identifier, array ( |
|
| 141 | + $this->_bsComponent=$js->bootstrap()->modal("#".$this->identifier, array( |
|
| 142 | 142 | "show" => $this->showOnStartup |
| 143 | 143 | )); |
| 144 | 144 | if ($this->draggable) |
@@ -4,14 +4,14 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | use yii\helpers\Url; |
| 6 | 6 | |
| 7 | -class JsUtils extends \Ajax\JsUtils{ |
|
| 8 | - public function getUrl($url){ |
|
| 9 | - if($url==="") |
|
| 7 | +class JsUtils extends \Ajax\JsUtils { |
|
| 8 | + public function getUrl($url) { |
|
| 9 | + if ($url==="") |
|
| 10 | 10 | $url="/"; |
| 11 | 11 | return Url::toRoute($url); |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | - public function addViewElement($identifier,$content,&$view){ |
|
| 14 | + public function addViewElement($identifier, $content, &$view) { |
|
| 15 | 15 | $params=$view->params; |
| 16 | 16 | if (\array_key_exists("q", $params)===false) { |
| 17 | 17 | $view->params["q"]=array(); |
@@ -19,11 +19,11 @@ discard block |
||
| 19 | 19 | $view->params["q"][$identifier]=$content; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - public function createScriptVariable(&$view,$view_var, $output){ |
|
| 22 | + public function createScriptVariable(&$view, $view_var, $output) { |
|
| 23 | 23 | $view->params[$view_var]=$output; |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - public function forward($initialControllerInstance,$controllerName,$actionName,$params=array()){ |
|
| 26 | + public function forward($initialControllerInstance, $controllerName, $actionName, $params=array()) { |
|
| 27 | 27 | \ob_start(); |
| 28 | 28 | $ctrInfo=\yii::$app->createController($controllerName."/".$actionName); |
| 29 | 29 | $ctrInfo[0]->{$ctrInfo[1]}($params); |
@@ -32,11 +32,11 @@ discard block |
||
| 32 | 32 | return $result; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - public function renderContent($initialControllerInstance,$viewName, $params=NULL) { |
|
| 36 | - return \yii::$app->view->render($viewName,$params); |
|
| 35 | + public function renderContent($initialControllerInstance, $viewName, $params=NULL) { |
|
| 36 | + return \yii::$app->view->render($viewName, $params); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - public function fromDispatcher($dispatcher){ |
|
| 39 | + public function fromDispatcher($dispatcher) { |
|
| 40 | 40 | $uri=new \Ajax\php\yii\URI(); |
| 41 | 41 | return $uri->segment_array(); |
| 42 | 42 | } |
@@ -158,8 +158,8 @@ discard block |
||
| 158 | 158 | * @param string $tagName |
| 159 | 159 | * @return HtmlLabel |
| 160 | 160 | */ |
| 161 | - public function htmlLabel($identifier, $content="", $icon=NULL,$tagName="div") { |
|
| 162 | - return $this->addHtmlComponent(new HtmlLabel($identifier, $content,$icon, $tagName)); |
|
| 161 | + public function htmlLabel($identifier, $content="", $icon=NULL, $tagName="div") { |
|
| 162 | + return $this->addHtmlComponent(new HtmlLabel($identifier, $content, $icon, $tagName)); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -168,8 +168,8 @@ discard block |
||
| 168 | 168 | * @param array $attributes |
| 169 | 169 | * @return HtmlLabelGroups |
| 170 | 170 | */ |
| 171 | - public function htmlLabelGroups($identifier,$labels=array(),$attributes=array()){ |
|
| 172 | - return $this->addHtmlComponent(new HtmlLabelGroups($identifier,$labels,$attributes)); |
|
| 171 | + public function htmlLabelGroups($identifier, $labels=array(), $attributes=array()) { |
|
| 172 | + return $this->addHtmlComponent(new HtmlLabelGroups($identifier, $labels, $attributes)); |
|
| 173 | 173 | } |
| 174 | 174 | |
| 175 | 175 | /** |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | } |
| 36 | 36 | if (isset($label)) |
| 37 | 37 | $this->setLabel($label); |
| 38 | - foreach ( $fields as $field ) { |
|
| 38 | + foreach ($fields as $field) { |
|
| 39 | 39 | $this->addItem($field); |
| 40 | 40 | } |
| 41 | 41 | return $this; |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | public function addItem($item) { |
| 59 | 59 | $item=parent::addItem($item); |
| 60 | - if($item instanceof HtmlFormField) |
|
| 60 | + if ($item instanceof HtmlFormField) |
|
| 61 | 61 | $item->setContainer($this); |
| 62 | 62 | return $item; |
| 63 | 63 | } |
@@ -98,9 +98,9 @@ discard block |
||
| 98 | 98 | |
| 99 | 99 | |
| 100 | 100 | public static function radios($name, $items=array(), $label=NULL, $value=null, $type=NULL) { |
| 101 | - $fields=array (); |
|
| 101 | + $fields=array(); |
|
| 102 | 102 | $i=0; |
| 103 | - foreach ( $items as $val => $caption ) { |
|
| 103 | + foreach ($items as $val => $caption) { |
|
| 104 | 104 | $itemO=new HtmlFormRadio($name."-".$i++, $name, $caption, $val, $type); |
| 105 | 105 | if ($val===$value) { |
| 106 | 106 | $itemO->getField()->setProperty("checked", ""); |
@@ -114,9 +114,9 @@ discard block |
||
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | public static function checkeds($name, $items=array(), $label=NULL, $values=array(), $type=NULL) { |
| 117 | - $fields=array (); |
|
| 117 | + $fields=array(); |
|
| 118 | 118 | $i=0; |
| 119 | - foreach ( $items as $val => $caption ) { |
|
| 119 | + foreach ($items as $val => $caption) { |
|
| 120 | 120 | $itemO=new HtmlFormCheckbox($name."-".$i++, $name, $caption, $val, $type); |
| 121 | 121 | if (\array_search($val, $values)!==false) { |
| 122 | 122 | //TODO check getField |