@@ -38,8 +38,9 @@ discard block |
||
| 38 | 38 | foreach ( $objects as $object ) { |
| 39 | 39 | $this->addResult([ "title" => $object ]); |
| 40 | 40 | } |
| 41 | - } else |
|
| 42 | - $this->elements=\array_merge($this->elements, $objects); |
|
| 41 | + } else { |
|
| 42 | + $this->elements=\array_merge($this->elements, $objects); |
|
| 43 | + } |
|
| 43 | 44 | return $this; |
| 44 | 45 | } |
| 45 | 46 | |
@@ -47,8 +48,9 @@ discard block |
||
| 47 | 48 | $result=array (); |
| 48 | 49 | foreach ( $this->elements as $element ) { |
| 49 | 50 | if ($element instanceof SearchResult) { |
| 50 | - if ($element->search($query, $field) !== false) |
|
| 51 | - $result[]=$element->asArray(); |
|
| 51 | + if ($element->search($query, $field) !== false) { |
|
| 52 | + $result[]=$element->asArray(); |
|
| 53 | + } |
|
| 52 | 54 | } else { |
| 53 | 55 | if (\array_key_exists($field, $element)) { |
| 54 | 56 | $value=$element[$field]; |
@@ -66,8 +68,9 @@ discard block |
||
| 66 | 68 | |
| 67 | 69 | public function search($query, $field="title") { |
| 68 | 70 | $result=$this->_search($query, $field); |
| 69 | - if ($result === false) |
|
| 70 | - $result=NULL; |
|
| 71 | + if ($result === false) { |
|
| 72 | + $result=NULL; |
|
| 73 | + } |
|
| 71 | 74 | return new SearchResults($result); |
| 72 | 75 | } |
| 73 | 76 | |
@@ -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 | /** |
@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | use Ajax\semantic\html\content\HtmlAccordionMenuItem; |
| 7 | 7 | use Ajax\JsUtils; |
| 8 | 8 | |
| 9 | -class HtmlAccordionMenu extends HtmlMenu{ |
|
| 9 | +class HtmlAccordionMenu extends HtmlMenu { |
|
| 10 | 10 | protected $params=array(); |
| 11 | 11 | |
| 12 | - public function __construct( $identifier, $items=array() ){ |
|
| 13 | - parent::__construct( $identifier, $items); |
|
| 12 | + public function __construct($identifier, $items=array()) { |
|
| 13 | + parent::__construct($identifier, $items); |
|
| 14 | 14 | $this->addToProperty("class", "accordion"); |
| 15 | 15 | $this->setVertical(); |
| 16 | 16 | } |
@@ -22,8 +22,8 @@ discard block |
||
| 22 | 22 | protected function createItem($value) { |
| 23 | 23 | $title=$value; |
| 24 | 24 | $content=""; |
| 25 | - if(\is_array($value)){ |
|
| 26 | - $title=@$value[0];$content=@$value[1]; |
|
| 25 | + if (\is_array($value)) { |
|
| 26 | + $title=@$value[0]; $content=@$value[1]; |
|
| 27 | 27 | } |
| 28 | 28 | $itemO=new HtmlAccordionMenuItem("item-".$this->identifier."-".$this->count(), $title, $content); |
| 29 | 29 | return $itemO->setClass("item"); |
@@ -34,13 +34,13 @@ discard block |
||
| 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 | $this->addEventsOnRun($js); |
| 40 | 40 | return $this->_bsComponent; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - public function setExclusive($value){ |
|
| 43 | + public function setExclusive($value) { |
|
| 44 | 44 | $this->params["exclusive"]=$value; |
| 45 | 45 | } |
| 46 | 46 | } |
| 47 | 47 | \ No newline at end of file |
@@ -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 | } |
@@ -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 |
@@ -181,9 +181,9 @@ |
||
| 181 | 181 | protected function createItem($value) { |
| 182 | 182 | $count=$this->count(); |
| 183 | 183 | $itemO=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "a", "section"); |
| 184 | - if (\is_array($value)) |
|
| 185 | - $itemO->fromArray($value); |
|
| 186 | - else { |
|
| 184 | + if (\is_array($value)) { |
|
| 185 | + $itemO->fromArray($value); |
|
| 186 | + } else { |
|
| 187 | 187 | $itemO->setContent($value); |
| 188 | 188 | } |
| 189 | 189 | return $itemO; |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * Associate an ajax get to the breadcrumb elements, displayed in $targetSelector |
| 66 | 66 | * $this->attr member is used to build each element url |
| 67 | 67 | * @param string $targetSelector the target of the get |
| 68 | - * @return HtmlBreadcrumbs |
|
| 68 | + * @return HtmlBreadcrumb |
|
| 69 | 69 | */ |
| 70 | 70 | public function autoGetOnClick($targetSelector) { |
| 71 | 71 | return $this->getOnClick($this->root, $targetSelector, array ("attr" => $this->attr )); |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * Add new elements in breadcrumbs corresponding to request dispatcher : controllerName, actionName, parameters |
| 95 | 95 | * @param JsUtils $js |
| 96 | 96 | * @param Dispatcher $dispatcher the request dispatcher |
| 97 | - * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
|
| 97 | + * @return HtmlBreadcrumb |
|
| 98 | 98 | */ |
| 99 | 99 | public function fromDispatcher(JsUtils $js,$dispatcher, $startIndex=0) { |
| 100 | 100 | return $this->addItems($js->fromDispatcher($dispatcher)); |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | * sets the function who generates the href elements. |
| 124 | 124 | * default : function($element){return $element->getContent()} |
| 125 | 125 | * @param function $_hrefFunction |
| 126 | - * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
|
| 126 | + * @return HtmlBreadcrumb |
|
| 127 | 127 | */ |
| 128 | 128 | public function setHrefFunction($_hrefFunction) { |
| 129 | 129 | $this->_hrefFunction=$_hrefFunction; |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | $this->startIndex=$startIndex; |
| 53 | 53 | $this->autoActive=$autoActive; |
| 54 | 54 | $this->_contentSeparator="<div class='divider'> / </div>"; |
| 55 | - $this->_hrefFunction=function ($e) { |
|
| 55 | + $this->_hrefFunction=function($e) { |
|
| 56 | 56 | return $e->getContent(); |
| 57 | 57 | }; |
| 58 | 58 | if (isset($hrefFunction)) { |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @return HtmlBreadcrumbs |
| 69 | 69 | */ |
| 70 | 70 | public function autoGetOnClick($targetSelector) { |
| 71 | - return $this->getOnClick($this->root, $targetSelector, array ("attr" => $this->attr )); |
|
| 71 | + return $this->getOnClick($this->root, $targetSelector, array("attr" => $this->attr)); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | public function contentAsString() { |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | */ |
| 84 | 84 | public function setActive($index=null) { |
| 85 | 85 | if (!isset($index)) { |
| 86 | - $index=sizeof($this->content) - 1; |
|
| 86 | + $index=sizeof($this->content)-1; |
|
| 87 | 87 | } |
| 88 | 88 | $activeItem=$this->content[$index]; |
| 89 | 89 | $activeItem->addToProperty("class", "active"); |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | * @param Dispatcher $dispatcher the request dispatcher |
| 97 | 97 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
| 98 | 98 | */ |
| 99 | - public function fromDispatcher(JsUtils $js,$dispatcher, $startIndex=0) { |
|
| 99 | + public function fromDispatcher(JsUtils $js, $dispatcher, $startIndex=0) { |
|
| 100 | 100 | return $this->addItems($js->fromDispatcher($dispatcher)); |
| 101 | 101 | } |
| 102 | 102 | |
@@ -110,12 +110,12 @@ discard block |
||
| 110 | 110 | if (!isset($index)) { |
| 111 | 111 | $index=sizeof($this->content); |
| 112 | 112 | } |
| 113 | - if ($this->absolutePaths === true) { |
|
| 113 | + if ($this->absolutePaths===true) { |
|
| 114 | 114 | return $this->_hrefFunction($this->content[$index]); |
| 115 | 115 | } else { |
| 116 | - return $this->root . implode($separator, array_slice(array_map(function ($e) { |
|
| 116 | + return $this->root.implode($separator, array_slice(array_map(function($e) { |
|
| 117 | 117 | return $this->_hrefFunction($e); |
| 118 | - }, $this->content), $this->startIndex, $index + 1)); |
|
| 118 | + }, $this->content), $this->startIndex, $index+1)); |
|
| 119 | 119 | } |
| 120 | 120 | } |
| 121 | 121 | |
@@ -149,8 +149,8 @@ discard block |
||
| 149 | 149 | $this->setActive(); |
| 150 | 150 | } |
| 151 | 151 | $count=$this->count(); |
| 152 | - for($i=1; $i < $count; $i++) { |
|
| 153 | - $this->content[$i]->wrap($this->getContentDivider($i - 1)); |
|
| 152 | + for ($i=1; $i<$count; $i++) { |
|
| 153 | + $this->content[$i]->wrap($this->getContentDivider($i-1)); |
|
| 154 | 154 | } |
| 155 | 155 | return parent::compile($js, $view); |
| 156 | 156 | } |
@@ -160,15 +160,15 @@ discard block |
||
| 160 | 160 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
| 161 | 161 | */ |
| 162 | 162 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
| 163 | - foreach ( $this->content as $element ) { |
|
| 163 | + foreach ($this->content as $element) { |
|
| 164 | 164 | $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
| 165 | 165 | } |
| 166 | 166 | return $this; |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
| 170 | - foreach ( $this->content as $element ) { |
|
| 171 | - if ($element->getProperty($this->attr) != NULL){ |
|
| 170 | + foreach ($this->content as $element) { |
|
| 171 | + if ($element->getProperty($this->attr)!=NULL) { |
|
| 172 | 172 | $element->_ajaxOn($operation, $event, $url, $responseElement, $parameters); |
| 173 | 173 | } |
| 174 | 174 | } |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | */ |
| 184 | 184 | protected function createItem($value) { |
| 185 | 185 | $count=$this->count(); |
| 186 | - $itemO=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "a", "section"); |
|
| 186 | + $itemO=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "a", "section"); |
|
| 187 | 187 | if (\is_array($value)) |
| 188 | 188 | $itemO->fromArray($value); |
| 189 | 189 | else { |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | public function addIconAt($icon, $index) { |
| 196 | 196 | $item=$this->getItem($index); |
| 197 | 197 | if (isset($item)) { |
| 198 | - $icon=new HtmlIcon("icon-" . $this->identifier, $icon); |
|
| 198 | + $icon=new HtmlIcon("icon-".$this->identifier, $icon); |
|
| 199 | 199 | $item->wrapContent($icon); |
| 200 | 200 | } |
| 201 | 201 | } |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | public function addItem($item) { |
| 204 | 204 | $count=$this->count(); |
| 205 | 205 | $itemO=parent::addItem($item); |
| 206 | - $this->addToPropertyCtrl("class", "section", array ("section" )); |
|
| 206 | + $this->addToPropertyCtrl("class", "section", array("section")); |
|
| 207 | 207 | $itemO->setProperty($this->attr, $this->getHref($count)); |
| 208 | 208 | return $itemO; |
| 209 | 209 | } |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | public function setAbsolutePaths($absolutePaths) { |
| 220 | 220 | $this->absolutePaths=$absolutePaths; |
| 221 | 221 | $size=\sizeof($this->content); |
| 222 | - for($i=0;$i<$size;$i++){ |
|
| 222 | + for ($i=0; $i<$size; $i++) { |
|
| 223 | 223 | $this->content[$i]->setProperty($this->attr, $this->getHref($i)); |
| 224 | 224 | } |
| 225 | 225 | return $this; |
@@ -10,23 +10,23 @@ |
||
| 10 | 10 | * @param string $value |
| 11 | 11 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
| 12 | 12 | */ |
| 13 | - public function setTextAlignment($value=TextAlignment::LEFT){ |
|
| 14 | - return $this->addToPropertyCtrl("class", $value,TextAlignment::getConstants()); |
|
| 13 | + public function setTextAlignment($value=TextAlignment::LEFT) { |
|
| 14 | + return $this->addToPropertyCtrl("class", $value, TextAlignment::getConstants()); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | - public function textCenterAligned(){ |
|
| 17 | + public function textCenterAligned() { |
|
| 18 | 18 | return $this->setTextAlignment(TextAlignment::CENTER); |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | - public function textJustified(){ |
|
| 21 | + public function textJustified() { |
|
| 22 | 22 | return $this->setTextAlignment(TextAlignment::JUSTIFIED); |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - public function textRightAligned(){ |
|
| 25 | + public function textRightAligned() { |
|
| 26 | 26 | return $this->setTextAlignment(TextAlignment::RIGHT); |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - public function textLeftAligned(){ |
|
| 29 | + public function textLeftAligned() { |
|
| 30 | 30 | return $this->setTextAlignment(); |
| 31 | 31 | } |
| 32 | 32 | } |
| 33 | 33 | \ No newline at end of file |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | |
| 14 | 14 | class HtmlSemSingleElement extends HtmlSingleElement { |
| 15 | 15 | use BaseTrait; |
| 16 | - public function __construct($identifier, $tagName="br",$baseClass="ui") { |
|
| 16 | + public function __construct($identifier, $tagName="br", $baseClass="ui") { |
|
| 17 | 17 | parent::__construct($identifier, $tagName); |
| 18 | 18 | $this->_baseClass=$baseClass; |
| 19 | 19 | $this->setClass($baseClass); |
@@ -2,5 +2,5 @@ |
||
| 2 | 2 | namespace Ajax\semantic\html\base\constants; |
| 3 | 3 | use Ajax\common\BaseEnum; |
| 4 | 4 | abstract class Size extends BaseEnum { |
| 5 | - const MASSIVE="massive",HUGE="huge",BIG="big",LARGE="large",MEDIUM="",SMALL="small",TINY="tiny",MINI="mini"; |
|
| 5 | + const MASSIVE="massive", HUGE="huge", BIG="big", LARGE="large", MEDIUM="", SMALL="small", TINY="tiny", MINI="mini"; |
|
| 6 | 6 | } |
| 7 | 7 | \ No newline at end of file |
@@ -5,5 +5,5 @@ |
||
| 5 | 5 | use Ajax\common\BaseEnum; |
| 6 | 6 | |
| 7 | 7 | abstract class StepStatus extends BaseEnum { |
| 8 | - const ACTIVE="active",COMPLETED="completed",DISABLED="disabled",NONE=""; |
|
| 8 | + const ACTIVE="active", COMPLETED="completed", DISABLED="disabled", NONE=""; |
|
| 9 | 9 | } |
| 10 | 10 | \ No newline at end of file |