@@ -65,9 +65,9 @@ discard block |
||
| 65 | 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{ |
|
| 70 | + } else{ |
|
| 71 | 71 | $elm=new HtmlLink("lnk-".$this->identifier."-".$size,$href,$element); |
| 72 | 72 | if(isset($glyph)){ |
| 73 | 73 | $elm->wrapContentWithGlyph($glyph); |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | } |
| 115 | 115 | if($this->absolutePaths===true){ |
| 116 | 116 | return $this->_hrefFunction($this->content[$index]); |
| 117 | - }else{ |
|
| 117 | + } else{ |
|
| 118 | 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 | } |
@@ -42,15 +42,15 @@ discard block |
||
| 42 | 42 | * @param boolean $autoActive sets the last element's class to <b>active</b> if true |
| 43 | 43 | * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()} |
| 44 | 44 | */ |
| 45 | - public function __construct($identifier,$elements=array(),$autoActive=true,$startIndex=0,$hrefFunction=NULL){ |
|
| 46 | - parent::__construct($identifier,"ol"); |
|
| 45 | + public function __construct($identifier, $elements=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL) { |
|
| 46 | + parent::__construct($identifier, "ol"); |
|
| 47 | 47 | $this->startIndex=$startIndex; |
| 48 | 48 | $this->setProperty("class", "breadcrumb"); |
| 49 | 49 | $this->content=array(); |
| 50 | 50 | $this->autoActive=$autoActive; |
| 51 | 51 | $this->absolutePaths; |
| 52 | - $this->_hrefFunction=function (HtmlDoubleElement $e){return $e->getContent();}; |
|
| 53 | - if(isset($hrefFunction)){ |
|
| 52 | + $this->_hrefFunction=function(HtmlDoubleElement $e) {return $e->getContent(); }; |
|
| 53 | + if (isset($hrefFunction)) { |
|
| 54 | 54 | $this->_hrefFunction=$hrefFunction; |
| 55 | 55 | } |
| 56 | 56 | $this->addElements($elements); |
@@ -61,43 +61,43 @@ discard block |
||
| 61 | 61 | * @param string $href |
| 62 | 62 | * @return \Ajax\bootstrap\html\HtmlLink |
| 63 | 63 | */ |
| 64 | - public function addElement($element,$href="",$glyph=NULL){ |
|
| 64 | + public function addElement($element, $href="", $glyph=NULL) { |
|
| 65 | 65 | $size=sizeof($this->content); |
| 66 | - if(\is_array($element)){ |
|
| 66 | + if (\is_array($element)) { |
|
| 67 | 67 | $elm=new HtmlLink("lnk-".$this->identifier."-".$size); |
| 68 | 68 | $elm->fromArray($element); |
| 69 | - }else if($element instanceof HtmlLink){ |
|
| 69 | + } else if ($element instanceof HtmlLink) { |
|
| 70 | 70 | $elm=$element; |
| 71 | - }else{ |
|
| 72 | - $elm=new HtmlLink("lnk-".$this->identifier."-".$size,$href,$element); |
|
| 73 | - if(isset($glyph)){ |
|
| 71 | + } else { |
|
| 72 | + $elm=new HtmlLink("lnk-".$this->identifier."-".$size, $href, $element); |
|
| 73 | + if (isset($glyph)) { |
|
| 74 | 74 | $elm->wrapContentWithGlyph($glyph); |
| 75 | 75 | } |
| 76 | 76 | } |
| 77 | - $elm->wrap("<li>","</li>"); |
|
| 77 | + $elm->wrap("<li>", "</li>"); |
|
| 78 | 78 | $this->content[]=$elm; |
| 79 | 79 | $elm->setProperty($this->attr, $this->getHref($size)); |
| 80 | 80 | return $elm; |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - public function setActive($index=null){ |
|
| 84 | - if(!isset($index)){ |
|
| 83 | + public function setActive($index=null) { |
|
| 84 | + if (!isset($index)) { |
|
| 85 | 85 | $index=sizeof($this->content)-1; |
| 86 | 86 | } |
| 87 | - $li=new HtmlBsDoubleElement("","li"); |
|
| 87 | + $li=new HtmlBsDoubleElement("", "li"); |
|
| 88 | 88 | $li->setClass("active"); |
| 89 | 89 | $li->setContent($this->content[$index]->getContent()); |
| 90 | 90 | $this->content[$index]=$li; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - public function addElements($elements){ |
|
| 94 | - foreach ( $elements as $element ) { |
|
| 93 | + public function addElements($elements) { |
|
| 94 | + foreach ($elements as $element) { |
|
| 95 | 95 | $this->addElement($element); |
| 96 | 96 | } |
| 97 | 97 | return $this; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - public function fromArray($array){ |
|
| 100 | + public function fromArray($array) { |
|
| 101 | 101 | $array=parent::fromArray($array); |
| 102 | 102 | $this->addElements($array); |
| 103 | 103 | return $array; |
@@ -109,14 +109,14 @@ discard block |
||
| 109 | 109 | * @param string $separator |
| 110 | 110 | * @return string |
| 111 | 111 | */ |
| 112 | - public function getHref($index=null,$separator="/"){ |
|
| 113 | - if(!isset($index)){ |
|
| 112 | + public function getHref($index=null, $separator="/") { |
|
| 113 | + if (!isset($index)) { |
|
| 114 | 114 | $index=sizeof($this->content); |
| 115 | 115 | } |
| 116 | - if($this->absolutePaths===true){ |
|
| 116 | + if ($this->absolutePaths===true) { |
|
| 117 | 117 | return $this->_hrefFunction($this->content[$index]); |
| 118 | - }else{ |
|
| 119 | - return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1)); |
|
| 118 | + } else { |
|
| 119 | + return $this->root.implode($separator, array_slice(array_map(function($e) {return $this->_hrefFunction($e); }, $this->content), $this->startIndex, $index+1)); |
|
| 120 | 120 | } |
| 121 | 121 | } |
| 122 | 122 | |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | * @see \Ajax\bootstrap\html\BaseHtml::compile() |
| 126 | 126 | */ |
| 127 | 127 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 128 | - if($this->autoActive){ |
|
| 128 | + if ($this->autoActive) { |
|
| 129 | 129 | $this->setActive(); |
| 130 | 130 | } |
| 131 | 131 | return parent::compile($js, $view); |
@@ -143,19 +143,19 @@ discard block |
||
| 143 | 143 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
| 144 | 144 | */ |
| 145 | 145 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
| 146 | - foreach ($this->content as $element){ |
|
| 147 | - $element->on($event,$jsCode,$stopPropagation,$preventDefault); |
|
| 146 | + foreach ($this->content as $element) { |
|
| 147 | + $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
|
| 148 | 148 | } |
| 149 | 149 | return $this; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | public function setAutoActive($autoActive) { |
| 153 | - $this->autoActive = $autoActive; |
|
| 153 | + $this->autoActive=$autoActive; |
|
| 154 | 154 | return $this; |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
| 158 | - foreach ($this->content as $element){ |
|
| 158 | + foreach ($this->content as $element) { |
|
| 159 | 159 | $element->_ajaxOn($operation, $event, $url, $responseElement, $parameters); |
| 160 | 160 | } |
| 161 | 161 | return $this; |
@@ -167,18 +167,18 @@ discard block |
||
| 167 | 167 | * @param string $targetSelector the target of the get |
| 168 | 168 | * @return HtmlBreadcrumbs |
| 169 | 169 | */ |
| 170 | - public function autoGetOnClick($targetSelector){ |
|
| 171 | - return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr)); |
|
| 170 | + public function autoGetOnClick($targetSelector) { |
|
| 171 | + return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr)); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | - public function contentAsString(){ |
|
| 175 | - if($this->autoActive){ |
|
| 174 | + public function contentAsString() { |
|
| 175 | + if ($this->autoActive) { |
|
| 176 | 176 | $this->setActive(); |
| 177 | 177 | } |
| 178 | 178 | return parent::contentAsString(); |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | - public function getElement($index){ |
|
| 181 | + public function getElement($index) { |
|
| 182 | 182 | return $this->content[$index]; |
| 183 | 183 | } |
| 184 | 184 | |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | * @param mixed $glyph |
| 188 | 188 | * @param int $index |
| 189 | 189 | */ |
| 190 | - public function addGlyph($glyph,$index=0){ |
|
| 190 | + public function addGlyph($glyph, $index=0) { |
|
| 191 | 191 | $elm=$this->getElement($index); |
| 192 | 192 | return $elm->wrapContentWithGlyph($glyph); |
| 193 | 193 | } |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | * @param Dispatcher $dispatcher the request dispatcher |
| 199 | 199 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
| 200 | 200 | */ |
| 201 | - public function fromDispatcher(JsUtils $js,$dispatcher,$startIndex=0){ |
|
| 201 | + public function fromDispatcher(JsUtils $js, $dispatcher, $startIndex=0) { |
|
| 202 | 202 | $this->startIndex=$startIndex; |
| 203 | 203 | return $this->addElements($js->fromDispatcher($dispatcher)); |
| 204 | 204 | } |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
| 211 | 211 | */ |
| 212 | 212 | public function setHrefFunction($_hrefFunction) { |
| 213 | - $this->_hrefFunction = $_hrefFunction; |
|
| 213 | + $this->_hrefFunction=$_hrefFunction; |
|
| 214 | 214 | return $this; |
| 215 | 215 | } |
| 216 | 216 | |
@@ -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 | /** |
@@ -49,8 +49,9 @@ discard block |
||
| 49 | 49 | |
| 50 | 50 | public function getDataField(){ |
| 51 | 51 | $field= $this->getField(); |
| 52 | - if($field instanceof AbstractCheckbox) |
|
| 53 | - $field=$field->getField(); |
|
| 52 | + if($field instanceof AbstractCheckbox) { |
|
| 53 | + $field=$field->getField(); |
|
| 54 | + } |
|
| 54 | 55 | return $field; |
| 55 | 56 | } |
| 56 | 57 | |
@@ -62,7 +63,7 @@ discard block |
||
| 62 | 63 | public function setChecked($value=true){ |
| 63 | 64 | if($value===true){ |
| 64 | 65 | $this->getDataField()->setProperty("checked", "checked"); |
| 65 | - }else{ |
|
| 66 | + } else{ |
|
| 66 | 67 | $this->getDataField()->removeProperty("checked"); |
| 67 | 68 | } |
| 68 | 69 | return $this; |
@@ -38,22 +38,22 @@ discard block |
||
| 38 | 38 | return $this->getHtmlCk()->attachEvents($events); |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - public function getField(){ |
|
| 41 | + public function getField() { |
|
| 42 | 42 | return $this->content["field"]; |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - public function getHtmlCk(){ |
|
| 45 | + public function getHtmlCk() { |
|
| 46 | 46 | return $this->content["field"]; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - public function setName($name){ |
|
| 49 | + public function setName($name) { |
|
| 50 | 50 | $this->getDataField()->setProperty("name", $name); |
| 51 | 51 | return $this; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - public function getDataField(){ |
|
| 55 | - $field= $this->getField(); |
|
| 56 | - if($field instanceof AbstractCheckbox) |
|
| 54 | + public function getDataField() { |
|
| 55 | + $field=$this->getField(); |
|
| 56 | + if ($field instanceof AbstractCheckbox) |
|
| 57 | 57 | $field=$field->getField(); |
| 58 | 58 | return $field; |
| 59 | 59 | } |
@@ -63,10 +63,10 @@ discard block |
||
| 63 | 63 | * @param boolean $value |
| 64 | 64 | * @return HtmlFormField |
| 65 | 65 | */ |
| 66 | - public function setChecked($value=true){ |
|
| 67 | - if($value===true){ |
|
| 66 | + public function setChecked($value=true) { |
|
| 67 | + if ($value===true) { |
|
| 68 | 68 | $this->getDataField()->setProperty("checked", "checked"); |
| 69 | - }else{ |
|
| 69 | + } else { |
|
| 70 | 70 | $this->getDataField()->removeProperty("checked"); |
| 71 | 71 | } |
| 72 | 72 | return $this; |
@@ -34,8 +34,9 @@ |
||
| 34 | 34 | * @see BaseHtml::run() |
| 35 | 35 | */ |
| 36 | 36 | public function run(JsUtils $js) { |
| 37 | - if(isset($this->_bsComponent)===false) |
|
| 38 | - $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
| 37 | + if(isset($this->_bsComponent)===false) { |
|
| 38 | + $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
| 39 | + } |
|
| 39 | 40 | $this->addEventsOnRun($js); |
| 40 | 41 | return $this->_bsComponent; |
| 41 | 42 | } |
@@ -6,31 +6,31 @@ discard block |
||
| 6 | 6 | use Ajax\semantic\html\content\HtmlAccordionItem; |
| 7 | 7 | use Ajax\JsUtils; |
| 8 | 8 | |
| 9 | -class HtmlAccordion extends HtmlSemCollection{ |
|
| 9 | +class HtmlAccordion extends HtmlSemCollection { |
|
| 10 | 10 | |
| 11 | 11 | protected $params=array(); |
| 12 | 12 | |
| 13 | - public function __construct( $identifier, $tagName="div", $baseClass="ui"){ |
|
| 14 | - parent::__construct( $identifier, "div", "ui accordion"); |
|
| 13 | + public function __construct($identifier, $tagName="div", $baseClass="ui") { |
|
| 14 | + parent::__construct($identifier, "div", "ui accordion"); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | |
| 18 | - protected function createItem($value){ |
|
| 18 | + protected function createItem($value) { |
|
| 19 | 19 | $count=$this->count(); |
| 20 | 20 | $title=$value; |
| 21 | 21 | $content=NULL; |
| 22 | - if(\is_array($value)){ |
|
| 23 | - $title=@$value[0];$content=@$value[1]; |
|
| 22 | + if (\is_array($value)) { |
|
| 23 | + $title=@$value[0]; $content=@$value[1]; |
|
| 24 | 24 | } |
| 25 | - return new HtmlAccordionItem("item-".$this->identifier."-".$count, $title,$content); |
|
| 25 | + return new HtmlAccordionItem("item-".$this->identifier."-".$count, $title, $content); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - protected function createCondition($value){ |
|
| 28 | + protected function createCondition($value) { |
|
| 29 | 29 | return ($value instanceof HtmlAccordionItem)===false; |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - public function addPanel($title,$content){ |
|
| 33 | - return $this->addItem([$title,$content]); |
|
| 32 | + public function addPanel($title, $content) { |
|
| 33 | + return $this->addItem([$title, $content]); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -42,8 +42,8 @@ discard block |
||
| 42 | 42 | * @param string $action a Phalcon action |
| 43 | 43 | * @param array $params |
| 44 | 44 | */ |
| 45 | - public function forwardPanel(JsUtils $js,$title,$initialController,$controller,$action,$params=array()){ |
|
| 46 | - return $this->addPanel($title, $js->forward($initialController, $controller, $action,$params)); |
|
| 45 | + public function forwardPanel(JsUtils $js, $title, $initialController, $controller, $action, $params=array()) { |
|
| 46 | + return $this->addPanel($title, $js->forward($initialController, $controller, $action, $params)); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -54,30 +54,30 @@ discard block |
||
| 54 | 54 | * @param string $viewName |
| 55 | 55 | * @param $params The parameters to pass to the view |
| 56 | 56 | */ |
| 57 | - public function renderViewPanel(JsUtils $js,$title,$initialController, $viewName, $params=array()) { |
|
| 58 | - return $this->addPanel($title, $js->renderContent($initialController, $viewName,$params)); |
|
| 57 | + public function renderViewPanel(JsUtils $js, $title, $initialController, $viewName, $params=array()) { |
|
| 58 | + return $this->addPanel($title, $js->renderContent($initialController, $viewName, $params)); |
|
| 59 | 59 | } |
| 60 | 60 | /* |
| 61 | 61 | * (non-PHPdoc) |
| 62 | 62 | * @see BaseHtml::run() |
| 63 | 63 | */ |
| 64 | 64 | public function run(JsUtils $js) { |
| 65 | - if(isset($this->_bsComponent)===false) |
|
| 66 | - $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
| 65 | + if (isset($this->_bsComponent)===false) |
|
| 66 | + $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier, $this->params); |
|
| 67 | 67 | $this->addEventsOnRun($js); |
| 68 | 68 | return $this->_bsComponent; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - public function setStyled(){ |
|
| 71 | + public function setStyled() { |
|
| 72 | 72 | return $this->addToProperty("class", "styled"); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - public function activate($index){ |
|
| 75 | + public function activate($index) { |
|
| 76 | 76 | $this->getItem($index)->setActive(true); |
| 77 | 77 | return $this; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - public function setExclusive($value){ |
|
| 80 | + public function setExclusive($value) { |
|
| 81 | 81 | $this->params["exclusive"]=$value; |
| 82 | 82 | } |
| 83 | 83 | } |
@@ -20,8 +20,9 @@ discard block |
||
| 20 | 20 | public function __construct($identifier, $width=NULL) { |
| 21 | 21 | parent::__construct($identifier, "div"); |
| 22 | 22 | $this->setClass("column"); |
| 23 | - if (isset($width)) |
|
| 24 | - $this->setWidth($width); |
|
| 23 | + if (isset($width)) { |
|
| 24 | + $this->setWidth($width); |
|
| 25 | + } |
|
| 25 | 26 | } |
| 26 | 27 | |
| 27 | 28 | /** |
@@ -48,10 +49,11 @@ discard block |
||
| 48 | 49 | |
| 49 | 50 | public function addDivider($vertical=true, $content=NULL) { |
| 50 | 51 | $divider=new HtmlDivider("", $content); |
| 51 | - if ($vertical) |
|
| 52 | - $divider->setVertical(); |
|
| 53 | - else |
|
| 54 | - $divider->setHorizontal(); |
|
| 52 | + if ($vertical) { |
|
| 53 | + $divider->setVertical(); |
|
| 54 | + } else { |
|
| 55 | + $divider->setHorizontal(); |
|
| 56 | + } |
|
| 55 | 57 | $this->wrap($divider,""); |
| 56 | 58 | return $divider; |
| 57 | 59 | } |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function setWidth($width) { |
| 32 | 32 | if (\is_int($width)) { |
| 33 | - $width=Wide::getConstants()["W" . $width]; |
|
| 33 | + $width=Wide::getConstants()["W".$width]; |
|
| 34 | 34 | } |
| 35 | 35 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 36 | - return $this->addToPropertyCtrl("class", "wide", array ("wide" )); |
|
| 36 | + return $this->addToPropertyCtrl("class", "wide", array("wide")); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | public function setValue($value) { |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | $divider->setVertical(); |
| 52 | 52 | else |
| 53 | 53 | $divider->setHorizontal(); |
| 54 | - $this->wrap($divider,""); |
|
| 54 | + $this->wrap($divider, ""); |
|
| 55 | 55 | return $divider; |
| 56 | 56 | } |
| 57 | 57 | } |
@@ -17,7 +17,7 @@ discard block |
||
| 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"]; |
@@ -32,16 +32,17 @@ discard block |
||
| 32 | 32 | if(isset($title)){ |
| 33 | 33 | $this->setTitle($title,$desc); |
| 34 | 34 | } |
| 35 | - }else{ |
|
| 35 | + } else{ |
|
| 36 | 36 | $this->setContent($content); |
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | public function setActive($value=true){ |
| 41 | - if($value) |
|
| 42 | - $this->setStatus(StepStatus::ACTIVE); |
|
| 43 | - else |
|
| 44 | - $this->setStatus(StepStatus::NONE); |
|
| 41 | + if($value) { |
|
| 42 | + $this->setStatus(StepStatus::ACTIVE); |
|
| 43 | + } else { |
|
| 44 | + $this->setStatus(StepStatus::NONE); |
|
| 45 | + } |
|
| 45 | 46 | return $this; |
| 46 | 47 | } |
| 47 | 48 | |
@@ -8,53 +8,53 @@ |
||
| 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(){ |
|
| 49 | - $this->removePropertyValues("class", [StepStatus::COMPLETED,StepStatus::DISABLED]); |
|
| 48 | + public function setCompleted() { |
|
| 49 | + $this->removePropertyValues("class", [StepStatus::COMPLETED, StepStatus::DISABLED]); |
|
| 50 | 50 | return $this->setStatus(StepStatus::COMPLETED); |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | - public function setStatus($status){ |
|
| 53 | + public function setStatus($status) { |
|
| 54 | 54 | return $this->addToPropertyCtrl("class", $status, StepStatus::getConstants()); |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | - public function removeStatus(){ |
|
| 57 | + public function removeStatus() { |
|
| 58 | 58 | $this->removePropertyValues("class", StepStatus::getConstants()); |
| 59 | 59 | } |
| 60 | 60 | } |
@@ -11,8 +11,8 @@ discard block |
||
| 11 | 11 | use Ajax\semantic\traits\SemanticWidgetsTrait; |
| 12 | 12 | |
| 13 | 13 | class Semantic extends BaseGui { |
| 14 | - use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait, |
|
| 15 | - SemanticHtmlModulesTrait,SemanticHtmlViewsTrait,SemanticWidgetsTrait; |
|
| 14 | + use SemanticComponentsTrait, SemanticHtmlElementsTrait, SemanticHtmlCollectionsTrait, |
|
| 15 | + SemanticHtmlModulesTrait, SemanticHtmlViewsTrait, SemanticWidgetsTrait; |
|
| 16 | 16 | |
| 17 | 17 | private $language; |
| 18 | 18 | |
@@ -21,12 +21,12 @@ discard block |
||
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | |
| 24 | - public function setLanguage($language){ |
|
| 25 | - if($language!==$this->language){ |
|
| 24 | + public function setLanguage($language) { |
|
| 25 | + if ($language!==$this->language) { |
|
| 26 | 26 | $file=\realpath(dirname(__FILE__)."/semantic/components/validation/languages/".$language.".js"); |
| 27 | - if(\file_exists($file)){ |
|
| 27 | + if (\file_exists($file)) { |
|
| 28 | 28 | $script=\file_get_contents($file); |
| 29 | - $this->js->exec($script,true); |
|
| 29 | + $this->js->exec($script, true); |
|
| 30 | 30 | $this->language=$language; |
| 31 | 31 | } |
| 32 | 32 | } |
@@ -39,8 +39,9 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | public function getParam($key) { |
| 41 | 41 | $value=null; |
| 42 | - if (array_key_exists($key, $this->params)) |
|
| 43 | - $value=$this->params [$key]; |
|
| 42 | + if (array_key_exists($key, $this->params)) { |
|
| 43 | + $value=$this->params [$key]; |
|
| 44 | + } |
|
| 44 | 45 | return $value; |
| 45 | 46 | } |
| 46 | 47 | |
@@ -49,16 +50,18 @@ discard block |
||
| 49 | 50 | } |
| 50 | 51 | |
| 51 | 52 | public function compile(JsUtils $js=NULL) { |
| 52 | - if ($js==NULL) |
|
| 53 | - $js=$this->js; |
|
| 53 | + if ($js==NULL) { |
|
| 54 | + $js=$this->js; |
|
| 55 | + } |
|
| 54 | 56 | $script=$this->getScript(); |
| 55 | 57 | $js->addToCompile($script); |
| 56 | 58 | } |
| 57 | 59 | |
| 58 | 60 | protected function setParamCtrl($key, $value, $typeCtrl) { |
| 59 | 61 | if (\is_array($typeCtrl)) { |
| 60 | - if (array_search($value, $typeCtrl)===false) |
|
| 61 | - throw new \Exception("La valeur passée a propriété `".$key."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
| 62 | + if (array_search($value, $typeCtrl)===false) { |
|
| 63 | + throw new \Exception("La valeur passée a propriété `".$key."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
| 64 | + } |
|
| 62 | 65 | } else { |
| 63 | 66 | if (!$typeCtrl($value)) { |
| 64 | 67 | throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$key); |
@@ -70,9 +73,9 @@ discard block |
||
| 70 | 73 | public function setParams($params) { |
| 71 | 74 | foreach ( $params as $k => $v ) { |
| 72 | 75 | $method="set".ucfirst($k); |
| 73 | - if (method_exists($this, $method)) |
|
| 74 | - $this->$method($v); |
|
| 75 | - else { |
|
| 76 | + if (method_exists($this, $method)) { |
|
| 77 | + $this->$method($v); |
|
| 78 | + } else { |
|
| 76 | 79 | $this->setParam($k, $v); |
| 77 | 80 | trigger_error("`".$k."` property n'existe pas", E_USER_NOTICE); |
| 78 | 81 | } |
@@ -10,8 +10,8 @@ discard block |
||
| 10 | 10 | * @version 1.001 |
| 11 | 11 | */ |
| 12 | 12 | abstract class BaseComponent { |
| 13 | - public $jquery_code_for_compile=array (); |
|
| 14 | - protected $params=array (); |
|
| 13 | + public $jquery_code_for_compile=array(); |
|
| 14 | + protected $params=array(); |
|
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | 17 | * |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | public function setParams($params) { |
| 71 | - foreach ( $params as $k => $v ) { |
|
| 71 | + foreach ($params as $k => $v) { |
|
| 72 | 72 | $method="set".ucfirst($k); |
| 73 | 73 | if (method_exists($this, $method)) |
| 74 | 74 | $this->$method($v); |
@@ -81,8 +81,8 @@ discard block |
||
| 81 | 81 | return $this; |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - public function addParams($params){ |
|
| 85 | - foreach ($params as $k=>$v){ |
|
| 84 | + public function addParams($params) { |
|
| 85 | + foreach ($params as $k=>$v) { |
|
| 86 | 86 | $this->setParam($k, $v); |
| 87 | 87 | } |
| 88 | 88 | return $this; |
@@ -90,11 +90,11 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | abstract public function getScript(); |
| 92 | 92 | |
| 93 | - public function setDebug($value){ |
|
| 93 | + public function setDebug($value) { |
|
| 94 | 94 | return $this->setParam("debug", $value); |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - public function setVerbose($value){ |
|
| 97 | + public function setVerbose($value) { |
|
| 98 | 98 | return $this->setParam("verbose", $value); |
| 99 | 99 | } |
| 100 | 100 | } |
@@ -12,18 +12,21 @@ |
||
| 12 | 12 | $this->setProperty("name", $identifier); |
| 13 | 13 | $this->setValue($value); |
| 14 | 14 | $this->setPlaceholder($placeholder); |
| 15 | - if(isset($rows)) |
|
| 16 | - $this->setRows($rows); |
|
| 15 | + if(isset($rows)) { |
|
| 16 | + $this->setRows($rows); |
|
| 17 | + } |
|
| 17 | 18 | } |
| 18 | 19 | public function setValue($value) { |
| 19 | - if(isset($value)) |
|
| 20 | - $this->setContent($value); |
|
| 20 | + if(isset($value)) { |
|
| 21 | + $this->setContent($value); |
|
| 22 | + } |
|
| 21 | 23 | return $this; |
| 22 | 24 | } |
| 23 | 25 | |
| 24 | 26 | public function setPlaceholder($value){ |
| 25 | - if(JString::isNotNull($value)) |
|
| 26 | - $this->setProperty("placeholder", $value); |
|
| 27 | + if(JString::isNotNull($value)) { |
|
| 28 | + $this->setProperty("placeholder", $value); |
|
| 29 | + } |
|
| 27 | 30 | return $this; |
| 28 | 31 | } |
| 29 | 32 | |
@@ -7,27 +7,27 @@ |
||
| 7 | 7 | |
| 8 | 8 | class HtmlTextarea extends HtmlDoubleElement { |
| 9 | 9 | |
| 10 | - public function __construct($identifier,$value=NULL,$placeholder=NULL,$rows=NULL) { |
|
| 10 | + public function __construct($identifier, $value=NULL, $placeholder=NULL, $rows=NULL) { |
|
| 11 | 11 | parent::__construct($identifier, "textarea"); |
| 12 | 12 | $this->setProperty("name", $identifier); |
| 13 | 13 | $this->setValue($value); |
| 14 | 14 | $this->setPlaceholder($placeholder); |
| 15 | - if(isset($rows)) |
|
| 15 | + if (isset($rows)) |
|
| 16 | 16 | $this->setRows($rows); |
| 17 | 17 | } |
| 18 | 18 | public function setValue($value) { |
| 19 | - if(isset($value)) |
|
| 19 | + if (isset($value)) |
|
| 20 | 20 | $this->setContent($value); |
| 21 | 21 | return $this; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | - public function setPlaceholder($value){ |
|
| 25 | - if(JString::isNotNull($value)) |
|
| 24 | + public function setPlaceholder($value) { |
|
| 25 | + if (JString::isNotNull($value)) |
|
| 26 | 26 | $this->setProperty("placeholder", $value); |
| 27 | 27 | return $this; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function setRows($count){ |
|
| 30 | + public function setRows($count) { |
|
| 31 | 31 | $this->setProperty("rows", $count); |
| 32 | 32 | } |
| 33 | 33 | } |