@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class HtmlForm extends HtmlSemCollection { |
| 22 | 22 | |
| 23 | - use FieldsTrait,FormTrait; |
|
| 23 | + use FieldsTrait, FormTrait; |
|
| 24 | 24 | /** |
| 25 | 25 | * @var array |
| 26 | 26 | */ |
@@ -33,14 +33,14 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | public function __construct($identifier, $elements=array()) { |
| 35 | 35 | parent::__construct($identifier, "form", "ui form"); |
| 36 | - $this->_states=[ State::ERROR,State::SUCCESS,State::WARNING,State::DISABLED ]; |
|
| 36 | + $this->_states=[State::ERROR, State::SUCCESS, State::WARNING, State::DISABLED]; |
|
| 37 | 37 | $this->setProperty("name", $this->identifier); |
| 38 | - $this->_fields=array (); |
|
| 38 | + $this->_fields=array(); |
|
| 39 | 39 | $this->addItems($elements); |
| 40 | 40 | $this->_validationParams=[]; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - protected function getForm(){ |
|
| 43 | + protected function getForm() { |
|
| 44 | 44 | return $this; |
| 45 | 45 | } |
| 46 | 46 | |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | * @param string $caption |
| 63 | 63 | * @return HtmlForm |
| 64 | 64 | */ |
| 65 | - public function addDivider($caption=NULL){ |
|
| 66 | - return $this->addContent(new HtmlDivider("",$caption)); |
|
| 65 | + public function addDivider($caption=NULL) { |
|
| 66 | + return $this->addContent(new HtmlDivider("", $caption)); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
@@ -85,12 +85,12 @@ discard block |
||
| 85 | 85 | $label=NULL; |
| 86 | 86 | } |
| 87 | 87 | $this->_fields=\array_merge($this->_fields, $fields); |
| 88 | - $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields); |
|
| 88 | + $fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count(), $fields); |
|
| 89 | 89 | } |
| 90 | 90 | if (isset($label)) |
| 91 | 91 | $fields=new HtmlFormField("", $fields, $label); |
| 92 | 92 | } else { |
| 93 | - $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count()); |
|
| 93 | + $fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count()); |
|
| 94 | 94 | } |
| 95 | 95 | $this->addItem($fields); |
| 96 | 96 | return $fields; |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | |
| 99 | 99 | public function addItem($item) { |
| 100 | 100 | $item=parent::addItem($item); |
| 101 | - if (\is_subclass_of($item, HtmlFormField::class) === true) { |
|
| 101 | + if (\is_subclass_of($item, HtmlFormField::class)===true) { |
|
| 102 | 102 | $this->_fields[]=$item; |
| 103 | 103 | } |
| 104 | 104 | return $item; |
@@ -156,39 +156,39 @@ discard block |
||
| 156 | 156 | |
| 157 | 157 | |
| 158 | 158 | |
| 159 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
| 160 | - if(\sizeof($this->_validationParams)>0) |
|
| 159 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
| 160 | + if (\sizeof($this->_validationParams)>0) |
|
| 161 | 161 | $this->setProperty("novalidate", ""); |
| 162 | - return parent::compile($js,$view); |
|
| 162 | + return parent::compile($js, $view); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | public function run(JsUtils $js) { |
| 166 | - if(isset($js)){ |
|
| 166 | + if (isset($js)) { |
|
| 167 | 167 | $compo=$js->semantic()->form("#".$this->identifier); |
| 168 | - }else{ |
|
| 168 | + } else { |
|
| 169 | 169 | $compo=new Form(); |
| 170 | 170 | $compo->attach("#".$this->identifier); |
| 171 | 171 | } |
| 172 | - foreach ($this->_fields as $field){ |
|
| 173 | - if($field instanceof HtmlFormField){ |
|
| 172 | + foreach ($this->_fields as $field) { |
|
| 173 | + if ($field instanceof HtmlFormField) { |
|
| 174 | 174 | $compo=$this->addCompoValidation($compo, $field); |
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | - foreach ($this->content as $field){ |
|
| 178 | - if($field instanceof HtmlFormFields){ |
|
| 177 | + foreach ($this->content as $field) { |
|
| 178 | + if ($field instanceof HtmlFormFields) { |
|
| 179 | 179 | $items=$field->getItems(); |
| 180 | - foreach ($items as $_field){ |
|
| 181 | - if($_field instanceof HtmlFormField) |
|
| 180 | + foreach ($items as $_field) { |
|
| 181 | + if ($_field instanceof HtmlFormField) |
|
| 182 | 182 | $compo=$this->addCompoValidation($compo, $_field); |
| 183 | 183 | } |
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | - $this->_runValidationParams($compo,$js); |
|
| 186 | + $this->_runValidationParams($compo, $js); |
|
| 187 | 187 | return $this->_bsComponent; |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - public function addValidationParam($paramName,$paramValue,$before="",$after=""){ |
|
| 191 | - $this->addBehavior($this->_validationParams, $paramName, $paramValue,$before,$after); |
|
| 190 | + public function addValidationParam($paramName, $paramValue, $before="", $after="") { |
|
| 191 | + $this->addBehavior($this->_validationParams, $paramName, $paramValue, $before, $after); |
|
| 192 | 192 | return $this; |
| 193 | 193 | } |
| 194 | 194 | |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | return $this->_validationParams; |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | - public function removeValidationParam($param){ |
|
| 204 | + public function removeValidationParam($param) { |
|
| 205 | 205 | unset($this->_validationParams[$param]); |
| 206 | 206 | return $this; |
| 207 | 207 | } |
@@ -7,50 +7,50 @@ |
||
| 7 | 7 | |
| 8 | 8 | class HtmlSticky extends HtmlSemDoubleElement { |
| 9 | 9 | |
| 10 | - public function __construct($identifier,$context=NULL,$content=NULL) { |
|
| 10 | + public function __construct($identifier, $context=NULL, $content=NULL) { |
|
| 11 | 11 | parent::__construct($identifier, "div", "ui sticky", $content); |
| 12 | - if(isset($content)) |
|
| 12 | + if (isset($content)) |
|
| 13 | 13 | $this->setContext($context); |
| 14 | 14 | } |
| 15 | 15 | |
| 16 | - public function setContext($context){ |
|
| 16 | + public function setContext($context) { |
|
| 17 | 17 | $this->_params["context"]=$context; |
| 18 | 18 | return $this; |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | - public function setFixed($value=NULL){ |
|
| 21 | + public function setFixed($value=NULL) { |
|
| 22 | 22 | $fixed="fixed"; |
| 23 | - if(isset($value)) |
|
| 23 | + if (isset($value)) |
|
| 24 | 24 | $fixed.=" ".$value; |
| 25 | - return $this->addToProperty("class",$fixed); |
|
| 25 | + return $this->addToProperty("class", $fixed); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - public function setBound($value=NULL){ |
|
| 28 | + public function setBound($value=NULL) { |
|
| 29 | 29 | $bound="bound"; |
| 30 | - if(isset($value)) |
|
| 30 | + if (isset($value)) |
|
| 31 | 31 | $bound.=" ".$value; |
| 32 | - return $this->addToProperty("class",$bound); |
|
| 32 | + return $this->addToProperty("class", $bound); |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * {@inheritDoc} |
| 37 | 37 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
| 38 | 38 | */ |
| 39 | - public function run(JsUtils $js){ |
|
| 39 | + public function run(JsUtils $js) { |
|
| 40 | 40 | parent::run($js); |
| 41 | - return $js->semantic()->sticky("#".$this->identifier,$this->_params); |
|
| 41 | + return $js->semantic()->sticky("#".$this->identifier, $this->_params); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - public function setOffset($offset=0){ |
|
| 44 | + public function setOffset($offset=0) { |
|
| 45 | 45 | $this->_params["offset"]=$offset; |
| 46 | 46 | return $this; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | |
| 50 | 50 | |
| 51 | - public function setDebug($verbose=NULL){ |
|
| 51 | + public function setDebug($verbose=NULL) { |
|
| 52 | 52 | $this->_params["debug"]=true; |
| 53 | - if(isset($verbose)) |
|
| 53 | + if (isset($verbose)) |
|
| 54 | 54 | $this->_params["verbose"]=true; |
| 55 | 55 | return $this; |
| 56 | 56 | } |
@@ -19,10 +19,10 @@ discard block |
||
| 19 | 19 | $this->setLabel($label); |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - public function setChecked($value=true){ |
|
| 23 | - if($value===true){ |
|
| 22 | + public function setChecked($value=true) { |
|
| 23 | + if ($value===true) { |
|
| 24 | 24 | $this->getField()->setProperty("checked", "checked"); |
| 25 | - }else{ |
|
| 25 | + } else { |
|
| 26 | 26 | $this->getField()->removeProperty("checked"); |
| 27 | 27 | } |
| 28 | 28 | return $this; |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | * @return \Ajax\semantic\html\collections\form\AbstractHtmlFormRadioCheckbox |
| 85 | 85 | */ |
| 86 | 86 | public function attachEvent($selector, $action=NULL) { |
| 87 | - if (isset($action)||\is_numeric($action)===true) { |
|
| 87 | + if (isset($action) || \is_numeric($action)===true) { |
|
| 88 | 88 | $js='$("#%identifier%").checkbox("attach events", "'.$selector.'", "'.$action.'");'; |
| 89 | 89 | } else { |
| 90 | 90 | $js='$("#%identifier%").checkbox("attach events", "'.$selector.'");'; |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | public function attachEvents($events=array()) { |
| 102 | 102 | if (\is_array($events)) { |
| 103 | - foreach ( $events as $action => $selector ) { |
|
| 103 | + foreach ($events as $action => $selector) { |
|
| 104 | 104 | $this->attachEvent($selector, $action); |
| 105 | 105 | } |
| 106 | 106 | } |
@@ -111,24 +111,24 @@ discard block |
||
| 111 | 111 | return $this->addToProperty("class", "fitted"); |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - public function setOnChecked($jsCode){ |
|
| 114 | + public function setOnChecked($jsCode) { |
|
| 115 | 115 | $this->_params["onChecked"]=$jsCode; |
| 116 | 116 | return $this; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - public function setOnUnchecked($jsCode){ |
|
| 119 | + public function setOnUnchecked($jsCode) { |
|
| 120 | 120 | $this->_params["onUnchecked"]=$jsCode; |
| 121 | 121 | return $this; |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - public function setOnChange($jsCode){ |
|
| 124 | + public function setOnChange($jsCode) { |
|
| 125 | 125 | $this->_params["onChange"]=$jsCode; |
| 126 | 126 | return $this; |
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | public function run(JsUtils $js) { |
| 130 | - if(!isset($this->_bsComponent)) |
|
| 131 | - $this->_bsComponent=$js->semantic()->checkbox("#" . $this->identifier, $this->_params); |
|
| 130 | + if (!isset($this->_bsComponent)) |
|
| 131 | + $this->_bsComponent=$js->semantic()->checkbox("#".$this->identifier, $this->_params); |
|
| 132 | 132 | return parent::run($js); |
| 133 | 133 | } |
| 134 | 134 | } |
| 135 | 135 | \ No newline at end of file |
@@ -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 | } |
| 101 | 101 | \ No newline at end of file |
@@ -40,12 +40,12 @@ discard block |
||
| 40 | 40 | * @return \Ajax\semantic\html\collections\HtmlMenu |
| 41 | 41 | */ |
| 42 | 42 | public function setType($type="") { |
| 43 | - return $this->addToPropertyCtrl("class", $type, array ("","item","text" )); |
|
| 43 | + return $this->addToPropertyCtrl("class", $type, array("", "item", "text")); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | public function setActiveItem($index) { |
| 47 | 47 | $item=$this->getItem($index); |
| 48 | - if ($item !== null) { |
|
| 48 | + if ($item!==null) { |
|
| 49 | 49 | $item->addToProperty("class", "active"); |
| 50 | 50 | } |
| 51 | 51 | return $this; |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | |
| 54 | 54 | private function getItemToInsert($item) { |
| 55 | 55 | if ($item instanceof HtmlInput || $item instanceof HtmlImg || $item instanceof HtmlIcon || $item instanceof HtmlButtonGroups || $item instanceof HtmlButton || $item instanceof HtmlLabel) { |
| 56 | - $itemO=new HtmlMenuItem("item-" . $this->identifier . "-" . \sizeof($this->content) , $item); |
|
| 56 | + $itemO=new HtmlMenuItem("item-".$this->identifier."-".\sizeof($this->content), $item); |
|
| 57 | 57 | $item=$itemO; |
| 58 | 58 | } |
| 59 | 59 | return $item; |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | private function afterInsert($item) { |
| 63 | 63 | if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false) |
| 64 | - $item->addToPropertyCtrl("class", "item", array ("item" )); |
|
| 64 | + $item->addToPropertyCtrl("class", "item", array("item")); |
|
| 65 | 65 | else { |
| 66 | 66 | $this->setSecondary(); |
| 67 | 67 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | public function addItem($item) { |
| 78 | 78 | $number=$item; |
| 79 | 79 | $item=parent::addItem($this->getItemToInsert($item)); |
| 80 | - if(\is_int($number)) |
|
| 80 | + if (\is_int($number)) |
|
| 81 | 81 | $item->setProperty("data-page", $number); |
| 82 | 82 | return $this->afterInsert($item); |
| 83 | 83 | } |
@@ -95,15 +95,15 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | public function generateMenuAsItem($menu, $header=null) { |
| 97 | 97 | $count=$this->count(); |
| 98 | - $item=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "div"); |
|
| 98 | + $item=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "div"); |
|
| 99 | 99 | if (isset($header)) { |
| 100 | - $headerItem=new HtmlSemDoubleElement("item-header-" . $this->identifier . "-" . $count, "div", "header"); |
|
| 100 | + $headerItem=new HtmlSemDoubleElement("item-header-".$this->identifier."-".$count, "div", "header"); |
|
| 101 | 101 | $headerItem->setContent($header); |
| 102 | 102 | $item->addContent($headerItem); |
| 103 | 103 | $this->_itemHeader=$headerItem; |
| 104 | 104 | } |
| 105 | - if(\is_array($menu)){ |
|
| 106 | - $menu=new HtmlMenu("menu-" . $this->identifier . "-" . $count,$menu); |
|
| 105 | + if (\is_array($menu)) { |
|
| 106 | + $menu=new HtmlMenu("menu-".$this->identifier."-".$count, $menu); |
|
| 107 | 107 | } |
| 108 | 108 | $menu->setClass("menu"); |
| 109 | 109 | $item->addContent($menu); |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $value=new HtmlSemDoubleElement($identifier, "a", "browse item", $value); |
| 119 | 119 | $value->addContent(new HtmlIcon("", "dropdown")); |
| 120 | 120 | $value=$this->addItem($value); |
| 121 | - $popup=new HtmlPopup($value, "popup-" . $this->identifier . "-" . $this->count(), $content); |
|
| 121 | + $popup=new HtmlPopup($value, "popup-".$this->identifier."-".$this->count(), $content); |
|
| 122 | 122 | $popup->setFlowing()->setPosition("bottom left")->setOn("click"); |
| 123 | 123 | $this->wrap("", $popup); |
| 124 | 124 | return $popup; |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | public function addDropdownAsItem($value, $items=NULL) { |
| 128 | 128 | $dd=$value; |
| 129 | 129 | if (\is_string($value)) { |
| 130 | - $dd=new HtmlDropdown("dropdown-" . $this->identifier . "-" . $this->count(), $value, $items); |
|
| 130 | + $dd=new HtmlDropdown("dropdown-".$this->identifier."-".$this->count(), $value, $items); |
|
| 131 | 131 | } |
| 132 | 132 | $this->addItem($dd); |
| 133 | 133 | return $dd; |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | * @see \Ajax\common\html\html5\HtmlCollection::createItem() |
| 141 | 141 | */ |
| 142 | 142 | protected function createItem($value) { |
| 143 | - $itemO=new HtmlMenuItem($this->identifier."-item-" . \sizeof($this->content),""); |
|
| 143 | + $itemO=new HtmlMenuItem($this->identifier."-item-".\sizeof($this->content), ""); |
|
| 144 | 144 | $itemO->setTagName("a"); |
| 145 | 145 | $itemO->setContent($value); |
| 146 | 146 | return $itemO; |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | public function setSecondary($value=true) { |
| 154 | - if($value) |
|
| 154 | + if ($value) |
|
| 155 | 155 | $this->addToProperty("class", "secondary"); |
| 156 | 156 | else |
| 157 | 157 | $this->removePropertyValue("class", "secondary"); |
@@ -159,28 +159,28 @@ discard block |
||
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | public function setVertical() { |
| 162 | - return $this->addToPropertyCtrl("class", "vertical", array ("vertical" )); |
|
| 162 | + return $this->addToPropertyCtrl("class", "vertical", array("vertical")); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | public function setPosition($value="right") { |
| 166 | - return $this->addToPropertyCtrl("class", $value, array ("right","left" )); |
|
| 166 | + return $this->addToPropertyCtrl("class", $value, array("right", "left")); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | public function setPointing($value=Direction::NONE) { |
| 170 | - return $this->addToPropertyCtrl("class", $value . " pointing", Direction::getConstantValues("pointing")); |
|
| 170 | + return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing")); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | public function asTab($vertical=false) { |
| 174 | - $this->apply(function (HtmlDoubleElement &$item) { |
|
| 174 | + $this->apply(function(HtmlDoubleElement&$item) { |
|
| 175 | 175 | $item->setTagName("a"); |
| 176 | 176 | }); |
| 177 | - if ($vertical === true) |
|
| 177 | + if ($vertical===true) |
|
| 178 | 178 | $this->setVertical(); |
| 179 | 179 | return $this->addToProperty("class", "tabular"); |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | public function asPagination() { |
| 183 | - $this->apply(function (HtmlDoubleElement &$item) { |
|
| 183 | + $this->apply(function(HtmlDoubleElement&$item) { |
|
| 184 | 184 | $item->setTagName("a"); |
| 185 | 185 | }); |
| 186 | 186 | return $this->addToProperty("class", "pagination"); |
@@ -217,10 +217,10 @@ discard block |
||
| 217 | 217 | */ |
| 218 | 218 | public function setWidth($width) { |
| 219 | 219 | if (\is_int($width)) { |
| 220 | - $width=Wide::getConstants()["W" . $width]; |
|
| 220 | + $width=Wide::getConstants()["W".$width]; |
|
| 221 | 221 | } |
| 222 | 222 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 223 | - return $this->addToPropertyCtrl("class", "item", array ("item" )); |
|
| 223 | + return $this->addToPropertyCtrl("class", "item", array("item")); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | public function addImage($identifier, $src="", $alt="") { |
@@ -235,14 +235,14 @@ discard block |
||
| 235 | 235 | return $this->_itemHeader; |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - public function setHasContainer(){ |
|
| 239 | - return $this->wrapContent("<div class='ui container'>","</div>"); |
|
| 238 | + public function setHasContainer() { |
|
| 239 | + return $this->wrapContent("<div class='ui container'>", "</div>"); |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - public function run(JsUtils $js){ |
|
| 243 | - if($this->identifier!=="" && !isset($this->_bsComponent)) |
|
| 244 | - $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false); |
|
| 245 | - $result= parent::run($js); |
|
| 242 | + public function run(JsUtils $js) { |
|
| 243 | + if ($this->identifier!=="" && !isset($this->_bsComponent)) |
|
| 244 | + $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}', false, false); |
|
| 245 | + $result=parent::run($js); |
|
| 246 | 246 | return $result->setItemSelector(".item"); |
| 247 | 247 | } |
| 248 | 248 | } |
| 249 | 249 | \ No newline at end of file |
@@ -19,215 +19,215 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | public static $index=0; |
| 21 | 21 | |
| 22 | - public function __construct($identifier,$instance=NULL,$captions=NULL){ |
|
| 22 | + public function __construct($identifier, $instance=NULL, $captions=NULL) { |
|
| 23 | 23 | $this->widgetIdentifier=$identifier; |
| 24 | 24 | $this->values=[]; |
| 25 | 25 | $this->afterCompile=[]; |
| 26 | - if(isset($instance)) |
|
| 26 | + if (isset($instance)) |
|
| 27 | 27 | $this->setInstance($instance); |
| 28 | 28 | $this->setCaptions($captions); |
| 29 | 29 | $this->captionCallback=NULL; |
| 30 | - $this->defaultValueFunction=function($name,$value){return $value;}; |
|
| 30 | + $this->defaultValueFunction=function($name, $value) {return $value; }; |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - public function moveFieldTo($from,$to){ |
|
| 34 | - if(JArray::moveElementTo($this->visibleProperties, $from, $to)){ |
|
| 33 | + public function moveFieldTo($from, $to) { |
|
| 34 | + if (JArray::moveElementTo($this->visibleProperties, $from, $to)) { |
|
| 35 | 35 | return JArray::moveElementTo($this->values, $from, $to); |
| 36 | 36 | } |
| 37 | 37 | return false; |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - public function swapFields($index1,$index2){ |
|
| 41 | - if(JArray::swapElements($this->visibleProperties, $index1, $index2)){ |
|
| 40 | + public function swapFields($index1, $index2) { |
|
| 41 | + if (JArray::swapElements($this->visibleProperties, $index1, $index2)) { |
|
| 42 | 42 | return JArray::swapElements($this->values, $index1, $index2); |
| 43 | 43 | } |
| 44 | 44 | return false; |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - public function removeField($index){ |
|
| 48 | - \array_splice($this->visibleProperties,$index,1); |
|
| 49 | - \array_splice($this->values,$index,1); |
|
| 50 | - \array_splice($this->captions,$index,1); |
|
| 47 | + public function removeField($index) { |
|
| 48 | + \array_splice($this->visibleProperties, $index, 1); |
|
| 49 | + \array_splice($this->values, $index, 1); |
|
| 50 | + \array_splice($this->captions, $index, 1); |
|
| 51 | 51 | return $this; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - public function getValues(){ |
|
| 54 | + public function getValues() { |
|
| 55 | 55 | $values=[]; |
| 56 | 56 | $index=0; |
| 57 | 57 | $count=$this->count(); |
| 58 | - while($index<$count){ |
|
| 58 | + while ($index<$count) { |
|
| 59 | 59 | $values[]=$this->getValue($index++); |
| 60 | 60 | } |
| 61 | 61 | return $values; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - public function getIdentifier($index=NULL){ |
|
| 65 | - if(!isset($index)) |
|
| 64 | + public function getIdentifier($index=NULL) { |
|
| 65 | + if (!isset($index)) |
|
| 66 | 66 | $index=self::$index; |
| 67 | 67 | $value=$index; |
| 68 | - if(isset($this->values["identifier"])){ |
|
| 69 | - if(\is_string($this->values["identifier"])) |
|
| 68 | + if (isset($this->values["identifier"])) { |
|
| 69 | + if (\is_string($this->values["identifier"])) |
|
| 70 | 70 | $value=JReflection::callMethod($this->instance, $this->values["identifier"], []); |
| 71 | 71 | else |
| 72 | - $value=$this->values["identifier"]($index,$this->instance); |
|
| 72 | + $value=$this->values["identifier"]($index, $this->instance); |
|
| 73 | 73 | } |
| 74 | 74 | return $value; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - public function getValue($index){ |
|
| 77 | + public function getValue($index) { |
|
| 78 | 78 | $property=$this->properties[$index]; |
| 79 | 79 | return $this->_getValue($property, $index); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - protected function _beforeAddProperty($index,&$field){ |
|
| 82 | + protected function _beforeAddProperty($index, &$field) { |
|
| 83 | 83 | |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - protected function _getDefaultValue($name,$value,$index){ |
|
| 86 | + protected function _getDefaultValue($name, $value, $index) { |
|
| 87 | 87 | $func=$this->defaultValueFunction; |
| 88 | - return $func($name,$value,$index,$this->instance); |
|
| 88 | + return $func($name, $value, $index, $this->instance); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - protected function _getPropertyValue(\ReflectionProperty $property,$index){ |
|
| 91 | + protected function _getPropertyValue(\ReflectionProperty $property, $index) { |
|
| 92 | 92 | $property->setAccessible(true); |
| 93 | 93 | return $property->getValue($this->instance); |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - protected function _getValue($property,$index){ |
|
| 96 | + protected function _getValue($property, $index) { |
|
| 97 | 97 | $value=null; |
| 98 | 98 | $propertyName=$property; |
| 99 | - if($property instanceof \ReflectionProperty){ |
|
| 99 | + if ($property instanceof \ReflectionProperty) { |
|
| 100 | 100 | $value=$this->_getPropertyValue($property, $index); |
| 101 | 101 | $propertyName=$property->getName(); |
| 102 | - }elseif(\is_callable($property)) |
|
| 102 | + }elseif (\is_callable($property)) |
|
| 103 | 103 | $value=$property($this->instance); |
| 104 | - elseif(\is_array($property)){ |
|
| 105 | - $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property); |
|
| 104 | + elseif (\is_array($property)) { |
|
| 105 | + $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index); }, $property); |
|
| 106 | 106 | $value=\implode("", $values); |
| 107 | - }elseif(\is_string($property)){ |
|
| 107 | + }elseif (\is_string($property)) { |
|
| 108 | 108 | $value=$property; |
| 109 | - if(isset($this->instance->{$property})){ |
|
| 109 | + if (isset($this->instance->{$property})) { |
|
| 110 | 110 | $value=$this->instance->{$property}; |
| 111 | - }elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){ |
|
| 111 | + }elseif (\method_exists($this->instance, $getter=JReflection::getterName($property))) { |
|
| 112 | 112 | $value=JReflection::callMethod($this->instance, $getter, []); |
| 113 | 113 | } |
| 114 | 114 | } |
| 115 | 115 | return $this->_postGetValue($index, $propertyName, $value); |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - protected function _postGetValue($index,$propertyName,$value){ |
|
| 119 | - if(isset($this->values[$index])){ |
|
| 120 | - $value= $this->values[$index]($value,$this->instance,$index); |
|
| 121 | - }else{ |
|
| 122 | - $value=$this->_getDefaultValue($propertyName,$value, $index); |
|
| 118 | + protected function _postGetValue($index, $propertyName, $value) { |
|
| 119 | + if (isset($this->values[$index])) { |
|
| 120 | + $value=$this->values[$index]($value, $this->instance, $index); |
|
| 121 | + } else { |
|
| 122 | + $value=$this->_getDefaultValue($propertyName, $value, $index); |
|
| 123 | 123 | } |
| 124 | - if(isset($this->afterCompile[$index])){ |
|
| 125 | - if(\is_callable($this->afterCompile[$index])){ |
|
| 126 | - $this->afterCompile[$index]($value,$this->instance,$index); |
|
| 124 | + if (isset($this->afterCompile[$index])) { |
|
| 125 | + if (\is_callable($this->afterCompile[$index])) { |
|
| 126 | + $this->afterCompile[$index]($value, $this->instance, $index); |
|
| 127 | 127 | } |
| 128 | 128 | } |
| 129 | 129 | return $value; |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | - public function insertField($index,$field){ |
|
| 133 | - array_splice( $this->visibleProperties, $index, 0, $field ); |
|
| 132 | + public function insertField($index, $field) { |
|
| 133 | + array_splice($this->visibleProperties, $index, 0, $field); |
|
| 134 | 134 | return $this; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - public function insertInField($index,$field){ |
|
| 137 | + public function insertInField($index, $field) { |
|
| 138 | 138 | $vb=$this->visibleProperties; |
| 139 | - if(isset($vb[$index])){ |
|
| 140 | - if(\is_array($vb[$index])){ |
|
| 139 | + if (isset($vb[$index])) { |
|
| 140 | + if (\is_array($vb[$index])) { |
|
| 141 | 141 | $this->visibleProperties[$index][]=$field; |
| 142 | - }else{ |
|
| 143 | - $this->visibleProperties[$index]=[$vb[$index],$field]; |
|
| 142 | + } else { |
|
| 143 | + $this->visibleProperties[$index]=[$vb[$index], $field]; |
|
| 144 | 144 | } |
| 145 | - }else{ |
|
| 145 | + } else { |
|
| 146 | 146 | return $this->insertField($index, $field); |
| 147 | 147 | } |
| 148 | 148 | return $this; |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | - public function addField($field){ |
|
| 151 | + public function addField($field) { |
|
| 152 | 152 | $this->visibleProperties[]=$field; |
| 153 | 153 | return $this; |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - public function count(){ |
|
| 156 | + public function count() { |
|
| 157 | 157 | return \sizeof($this->properties); |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - public function visiblePropertiesCount(){ |
|
| 160 | + public function visiblePropertiesCount() { |
|
| 161 | 161 | return \sizeof($this->visibleProperties); |
| 162 | 162 | } |
| 163 | 163 | |
| 164 | - public function getProperty($index){ |
|
| 164 | + public function getProperty($index) { |
|
| 165 | 165 | return $this->properties[$index]; |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | - public function getFieldName($index){ |
|
| 168 | + public function getFieldName($index) { |
|
| 169 | 169 | $property=$this->getProperty($index); |
| 170 | - if($property instanceof \ReflectionProperty){ |
|
| 170 | + if ($property instanceof \ReflectionProperty) { |
|
| 171 | 171 | $result=$property->getName(); |
| 172 | - }elseif(\is_callable($property)){ |
|
| 172 | + }elseif (\is_callable($property)) { |
|
| 173 | 173 | $result=$this->visibleProperties[$index]; |
| 174 | - }else{ |
|
| 174 | + } else { |
|
| 175 | 175 | $result=$property; |
| 176 | 176 | } |
| 177 | 177 | return $result; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | |
| 181 | - protected function showableProperty(\ReflectionProperty $rProperty){ |
|
| 182 | - return JString::startswith($rProperty->getName(),"_")===false; |
|
| 181 | + protected function showableProperty(\ReflectionProperty $rProperty) { |
|
| 182 | + return JString::startswith($rProperty->getName(), "_")===false; |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | public function setInstance($instance) { |
| 186 | - if(\is_string($instance)){ |
|
| 186 | + if (\is_string($instance)) { |
|
| 187 | 187 | $instance=new $instance(); |
| 188 | 188 | } |
| 189 | 189 | $this->instance=$instance; |
| 190 | 190 | $this->properties=[]; |
| 191 | 191 | $this->reflect=new \ReflectionClass($instance); |
| 192 | - if(\sizeof($this->visibleProperties)===0){ |
|
| 192 | + if (\sizeof($this->visibleProperties)===0) { |
|
| 193 | 193 | $this->properties=$this->getDefaultProperties(); |
| 194 | - }else{ |
|
| 195 | - foreach ($this->visibleProperties as $property){ |
|
| 194 | + } else { |
|
| 195 | + foreach ($this->visibleProperties as $property) { |
|
| 196 | 196 | $this->setInstanceProperty($property); |
| 197 | 197 | } |
| 198 | 198 | } |
| 199 | 199 | return $this; |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - private function setInstanceProperty($property){ |
|
| 203 | - if(\is_callable($property)){ |
|
| 202 | + private function setInstanceProperty($property) { |
|
| 203 | + if (\is_callable($property)) { |
|
| 204 | 204 | $this->properties[]=$property; |
| 205 | - }elseif(\is_string($property)){ |
|
| 206 | - try{ |
|
| 205 | + }elseif (\is_string($property)) { |
|
| 206 | + try { |
|
| 207 | 207 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
| 208 | 208 | $rProperty=$this->reflect->getProperty($property); |
| 209 | 209 | $this->properties[]=$rProperty; |
| 210 | - }catch(\Exception $e){ |
|
| 210 | + }catch (\Exception $e) { |
|
| 211 | 211 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
| 212 | 212 | $this->properties[]=$property; |
| 213 | 213 | } |
| 214 | - }elseif(\is_int($property)){ |
|
| 214 | + }elseif (\is_int($property)) { |
|
| 215 | 215 | $props=$this->getDefaultProperties(); |
| 216 | - if(isset($props[$property])) |
|
| 216 | + if (isset($props[$property])) |
|
| 217 | 217 | $this->properties[]=$props[$property]; |
| 218 | 218 | else |
| 219 | 219 | $this->properties[]=$property; |
| 220 | - }else{ |
|
| 220 | + } else { |
|
| 221 | 221 | $this->properties[]=$property; |
| 222 | 222 | } |
| 223 | 223 | } |
| 224 | 224 | |
| 225 | - protected function getDefaultProperties(){ |
|
| 225 | + protected function getDefaultProperties() { |
|
| 226 | 226 | $result=[]; |
| 227 | 227 | $properties=$this->reflect->getProperties(); |
| 228 | - foreach ($properties as $property){ |
|
| 228 | + foreach ($properties as $property) { |
|
| 229 | 229 | $showable=$this->showableProperty($property); |
| 230 | - if($showable!==false){ |
|
| 230 | + if ($showable!==false) { |
|
| 231 | 231 | $result[]=$property; |
| 232 | 232 | } |
| 233 | 233 | } |
@@ -239,12 +239,12 @@ discard block |
||
| 239 | 239 | return $this; |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - public function setValueFunction($index,$callback){ |
|
| 242 | + public function setValueFunction($index, $callback) { |
|
| 243 | 243 | $this->values[$index]=$callback; |
| 244 | 244 | return $this; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - public function setIdentifierFunction($callback){ |
|
| 247 | + public function setIdentifierFunction($callback) { |
|
| 248 | 248 | $this->values["identifier"]=$callback; |
| 249 | 249 | return $this; |
| 250 | 250 | } |
@@ -257,41 +257,41 @@ discard block |
||
| 257 | 257 | return $this->properties; |
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - public function getCaption($index){ |
|
| 261 | - if(isset($this->captions[$index])){ |
|
| 260 | + public function getCaption($index) { |
|
| 261 | + if (isset($this->captions[$index])) { |
|
| 262 | 262 | return $this->captions[$index]; |
| 263 | 263 | } |
| 264 | - if($this->properties[$index] instanceof \ReflectionProperty) |
|
| 264 | + if ($this->properties[$index] instanceof \ReflectionProperty) |
|
| 265 | 265 | return $this->properties[$index]->getName(); |
| 266 | - elseif(\is_callable($this->properties[$index])) |
|
| 266 | + elseif (\is_callable($this->properties[$index])) |
|
| 267 | 267 | return ""; |
| 268 | 268 | else |
| 269 | 269 | return $this->properties[$index]; |
| 270 | 270 | } |
| 271 | 271 | |
| 272 | - public function getCaptions(){ |
|
| 273 | - if(isset($this->captions)){ |
|
| 274 | - $captions= \array_values($this->captions); |
|
| 275 | - for($i=\sizeof($captions);$i<$this->count();$i++){ |
|
| 272 | + public function getCaptions() { |
|
| 273 | + if (isset($this->captions)) { |
|
| 274 | + $captions=\array_values($this->captions); |
|
| 275 | + for ($i=\sizeof($captions); $i<$this->count(); $i++) { |
|
| 276 | 276 | $captions[]=""; |
| 277 | 277 | } |
| 278 | - }else{ |
|
| 278 | + } else { |
|
| 279 | 279 | $captions=[]; |
| 280 | 280 | $index=0; |
| 281 | 281 | $count=$this->count(); |
| 282 | - while($index<$count){ |
|
| 282 | + while ($index<$count) { |
|
| 283 | 283 | $captions[]=$this->getCaption($index++); |
| 284 | 284 | } |
| 285 | 285 | } |
| 286 | - if(isset($this->captionCallback) && \is_callable($this->captionCallback)){ |
|
| 286 | + if (isset($this->captionCallback) && \is_callable($this->captionCallback)) { |
|
| 287 | 287 | $callback=$this->captionCallback; |
| 288 | - $callback($captions,$this->instance); |
|
| 288 | + $callback($captions, $this->instance); |
|
| 289 | 289 | } |
| 290 | 290 | return $captions; |
| 291 | 291 | } |
| 292 | 292 | |
| 293 | - public function setCaption($index,$caption){ |
|
| 294 | - if(isset($this->captions)===false) |
|
| 293 | + public function setCaption($index, $caption) { |
|
| 294 | + if (isset($this->captions)===false) |
|
| 295 | 295 | $this->captions=[]; |
| 296 | 296 | $this->captions[$index]=$caption; |
| 297 | 297 | return $this; |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | * @param callable $callback function called after the field compilation |
| 310 | 310 | * @return \Ajax\semantic\widgets\datatable\InstanceViewer |
| 311 | 311 | */ |
| 312 | - public function afterCompile($index,$callback){ |
|
| 312 | + public function afterCompile($index, $callback) { |
|
| 313 | 313 | $this->afterCompile[$index]=$callback; |
| 314 | 314 | return $this; |
| 315 | 315 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | use Ajax\semantic\html\base\constants\Wide; |
| 12 | 12 | |
| 13 | 13 | class HtmlTD extends HtmlSemDoubleElement { |
| 14 | - use TextAlignmentTrait,TableElementTrait; |
|
| 14 | + use TextAlignmentTrait, TableElementTrait; |
|
| 15 | 15 | private $_container; |
| 16 | 16 | private $_row; |
| 17 | 17 | private $_col; |
@@ -26,8 +26,8 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | public function __construct($identifier, $content=NULL, $tagName="td") { |
| 28 | 28 | parent::__construct($identifier, $tagName, "", $content); |
| 29 | - $this->_variations=[ Variation::COLLAPSING ]; |
|
| 30 | - $this->_states=[ State::ACTIVE,State::POSITIVE,State::NEGATIVE,State::WARNING,State::ERROR,State::DISABLED ]; |
|
| 29 | + $this->_variations=[Variation::COLLAPSING]; |
|
| 30 | + $this->_states=[State::ACTIVE, State::POSITIVE, State::NEGATIVE, State::WARNING, State::ERROR, State::DISABLED]; |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | public function setContainer($container, $row, $col) { |
@@ -47,8 +47,8 @@ discard block |
||
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | public function setRowspan($rowspan) { |
| 50 | - $to=min($this->_container->count(), $this->_row + $rowspan - 1); |
|
| 51 | - for($i=$to; $i > $this->_row; $i--) { |
|
| 50 | + $to=min($this->_container->count(), $this->_row+$rowspan-1); |
|
| 51 | + for ($i=$to; $i>$this->_row; $i--) { |
|
| 52 | 52 | $this->_container->delete($i, $this->_col); |
| 53 | 53 | } |
| 54 | 54 | $this->setProperty("rowspan", $rowspan); |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | public function mergeRow() { |
| 59 | - if(!$this->_rowMerged){ |
|
| 59 | + if (!$this->_rowMerged) { |
|
| 60 | 60 | $this->_rowMerged=true; |
| 61 | 61 | return $this->setRowspan($this->_container->count()); |
| 62 | 62 | } |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | public function mergeCol() { |
| 67 | - if(!$this->_colMerged){ |
|
| 67 | + if (!$this->_colMerged) { |
|
| 68 | 68 | $this->_colMerged=true; |
| 69 | 69 | return $this->setColspan($this->_container->getRow($this->_row)->count()); |
| 70 | 70 | } |
@@ -72,9 +72,9 @@ discard block |
||
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | public function setColspan($colspan) { |
| 75 | - $to=min($this->_container->getRow($this->_row)->count(), $this->_col + $colspan - 1); |
|
| 76 | - for($i=$to; $i > $this->_col; $i--) { |
|
| 77 | - $this->_container->delete($this->_row, $this->_col + 1); |
|
| 75 | + $to=min($this->_container->getRow($this->_row)->count(), $this->_col+$colspan-1); |
|
| 76 | + for ($i=$to; $i>$this->_col; $i--) { |
|
| 77 | + $this->_container->delete($this->_row, $this->_col+1); |
|
| 78 | 78 | } |
| 79 | 79 | $this->setProperty("colspan", $colspan); |
| 80 | 80 | return $this->_container; |
@@ -113,11 +113,11 @@ discard block |
||
| 113 | 113 | return $this->addToProperty("class", "selectable"); |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - public function setWidth($width){ |
|
| 116 | + public function setWidth($width) { |
|
| 117 | 117 | if (\is_int($width)) { |
| 118 | - $width=Wide::getConstants()["W" . $width]; |
|
| 118 | + $width=Wide::getConstants()["W".$width]; |
|
| 119 | 119 | } |
| 120 | 120 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 121 | - return $this->addToPropertyCtrl("class", "wide", array ("wide" )); |
|
| 121 | + return $this->addToPropertyCtrl("class", "wide", array("wide")); |
|
| 122 | 122 | } |
| 123 | 123 | } |
| 124 | 124 | \ No newline at end of file |
@@ -13,27 +13,27 @@ discard block |
||
| 13 | 13 | * @author jc |
| 14 | 14 | * |
| 15 | 15 | */ |
| 16 | -trait FormTrait{ |
|
| 16 | +trait FormTrait { |
|
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * @return HtmlForm |
| 20 | 20 | */ |
| 21 | 21 | abstract protected function getForm(); |
| 22 | 22 | |
| 23 | - protected function addCompoValidation($compo,$field){ |
|
| 23 | + protected function addCompoValidation($compo, $field) { |
|
| 24 | 24 | $validation=$field->getValidation(); |
| 25 | - if(isset($validation)){ |
|
| 25 | + if (isset($validation)) { |
|
| 26 | 26 | $validation->setIdentifier($field->getDataField()->getIdentifier()); |
| 27 | 27 | $compo->addFieldValidation($validation); |
| 28 | 28 | } |
| 29 | 29 | return $compo; |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - protected function _runValidationParams(&$compo,JsUtils $js=NULL){ |
|
| 32 | + protected function _runValidationParams(&$compo, JsUtils $js=NULL) { |
|
| 33 | 33 | $form=$this->getForm(); |
| 34 | 34 | $params=$form->getValidationParams(); |
| 35 | - if(isset($params["_ajaxSubmit"])){ |
|
| 36 | - $compilation=$this->_compileAjaxSubmit($params["_ajaxSubmit"],$js); |
|
| 35 | + if (isset($params["_ajaxSubmit"])) { |
|
| 36 | + $compilation=$this->_compileAjaxSubmit($params["_ajaxSubmit"], $js); |
|
| 37 | 37 | $this->onSuccess($compilation); |
| 38 | 38 | $form->removeValidationParam("_ajaxSubmit"); |
| 39 | 39 | } |
@@ -42,16 +42,16 @@ discard block |
||
| 42 | 42 | $form->addEventsOnRun($js); |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - protected function _compileAjaxSubmit($ajaxSubmit,JsUtils $js=null){ |
|
| 45 | + protected function _compileAjaxSubmit($ajaxSubmit, JsUtils $js=null) { |
|
| 46 | 46 | $compilation=""; |
| 47 | - if(\is_array($ajaxSubmit)){ |
|
| 48 | - foreach ($ajaxSubmit as $ajaxSubmitItem){ |
|
| 47 | + if (\is_array($ajaxSubmit)) { |
|
| 48 | + foreach ($ajaxSubmit as $ajaxSubmitItem) { |
|
| 49 | 49 | $compilation.=$ajaxSubmitItem->compile($js); |
| 50 | 50 | } |
| 51 | - }elseif($ajaxSubmit instanceof AjaxCall){ |
|
| 51 | + }elseif ($ajaxSubmit instanceof AjaxCall) { |
|
| 52 | 52 | $compilation=$ajaxSubmit->compile($js); |
| 53 | 53 | } |
| 54 | - $compilation=str_ireplace("\"","%quote%", $compilation); |
|
| 54 | + $compilation=str_ireplace("\"", "%quote%", $compilation); |
|
| 55 | 55 | return $compilation; |
| 56 | 56 | } |
| 57 | 57 | |
@@ -64,14 +64,14 @@ discard block |
||
| 64 | 64 | return $this; |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - public function setAttached($value=true){ |
|
| 67 | + public function setAttached($value=true) { |
|
| 68 | 68 | $form=$this->getForm(); |
| 69 | - if($value) |
|
| 70 | - $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
| 69 | + if ($value) |
|
| 70 | + $form->addToPropertyCtrl("class", "attached", array("attached")); |
|
| 71 | 71 | return $form; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - public function addErrorMessage(){ |
|
| 74 | + public function addErrorMessage() { |
|
| 75 | 75 | return $this->getForm()->addContent((new HtmlMessage(""))->setError()); |
| 76 | 76 | } |
| 77 | 77 | |
@@ -87,47 +87,47 @@ discard block |
||
| 87 | 87 | * @param array $parameters |
| 88 | 88 | * @return HtmlForm |
| 89 | 89 | */ |
| 90 | - public function submitOn($event,$identifierOrElement,$url,$responseElement,$parameters=NULL){ |
|
| 90 | + public function submitOn($event, $identifierOrElement, $url, $responseElement, $parameters=NULL) { |
|
| 91 | 91 | $form=$this->getForm(); |
| 92 | - if($identifierOrElement instanceof BaseHtml) |
|
| 92 | + if ($identifierOrElement instanceof BaseHtml) |
|
| 93 | 93 | $elem=$identifierOrElement; |
| 94 | 94 | else |
| 95 | 95 | $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
| 96 | - if(isset($elem)){ |
|
| 97 | - $this->_buttonAsSubmit($elem, $event,$url,$responseElement,$parameters); |
|
| 96 | + if (isset($elem)) { |
|
| 97 | + $this->_buttonAsSubmit($elem, $event, $url, $responseElement, $parameters); |
|
| 98 | 98 | } |
| 99 | 99 | return $form; |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - public function submitOnClick($identifier,$url,$responseElement,$parameters=NULL){ |
|
| 103 | - return $this->submitOn("click", $identifier, $url, $responseElement,$parameters); |
|
| 102 | + public function submitOnClick($identifier, $url, $responseElement, $parameters=NULL) { |
|
| 103 | + return $this->submitOn("click", $identifier, $url, $responseElement, $parameters); |
|
| 104 | 104 | } |
| 105 | 105 | |
| 106 | - public function addSubmit($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$parameters=NULL){ |
|
| 107 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
| 108 | - return $this->_buttonAsSubmit($bt, "click",$url,$responseElement,$parameters); |
|
| 106 | + public function addSubmit($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $parameters=NULL) { |
|
| 107 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
| 108 | + return $this->_buttonAsSubmit($bt, "click", $url, $responseElement, $parameters); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - protected function _buttonAsSubmit(BaseHtml &$button,$event,$url,$responseElement=NULL,$parameters=NULL){ |
|
| 111 | + protected function _buttonAsSubmit(BaseHtml&$button, $event, $url, $responseElement=NULL, $parameters=NULL) { |
|
| 112 | 112 | $form=$this->getForm(); |
| 113 | - if(isset($url) && isset($responseElement)){ |
|
| 114 | - $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');",true,true); |
|
| 115 | - $this->setSubmitParams($url,$responseElement,$parameters); |
|
| 113 | + if (isset($url) && isset($responseElement)) { |
|
| 114 | + $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');", true, true); |
|
| 115 | + $this->setSubmitParams($url, $responseElement, $parameters); |
|
| 116 | 116 | } |
| 117 | 117 | return $button; |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - public function setSubmitParams($url,$responseElement=NULL,$parameters=NULL){ |
|
| 120 | + public function setSubmitParams($url, $responseElement=NULL, $parameters=NULL) { |
|
| 121 | 121 | $form=$this->getForm(); |
| 122 | - $params=["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url,"stopPropagation"=>true]; |
|
| 123 | - if(\is_array($parameters)) |
|
| 124 | - $params=\array_merge($params,$parameters); |
|
| 122 | + $params=["form"=>$form->getIdentifier(), "responseElement"=>$responseElement, "url"=>$url, "stopPropagation"=>true]; |
|
| 123 | + if (\is_array($parameters)) |
|
| 124 | + $params=\array_merge($params, $parameters); |
|
| 125 | 125 | $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", $params)); |
| 126 | 126 | return $this; |
| 127 | 127 | } |
| 128 | 128 | |
| 129 | - public function addReset($identifier,$value,$cssStyle=NULL){ |
|
| 130 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
| 129 | + public function addReset($identifier, $value, $cssStyle=NULL) { |
|
| 130 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
| 131 | 131 | $bt->setProperty("type", "reset"); |
| 132 | 132 | return $bt; |
| 133 | 133 | } |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | * @param string $jsCode |
| 138 | 138 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
| 139 | 139 | */ |
| 140 | - public function onValid($jsCode){ |
|
| 140 | + public function onValid($jsCode) { |
|
| 141 | 141 | $form=$this->getForm(); |
| 142 | 142 | $form->addValidationParam("onValid", "%function(){".$jsCode."}%"); |
| 143 | 143 | return $form; |
@@ -148,9 +148,9 @@ discard block |
||
| 148 | 148 | * @param string $jsCode can use event and fields parameters |
| 149 | 149 | * @return HtmlForm |
| 150 | 150 | */ |
| 151 | - public function onSuccess($jsCode){ |
|
| 151 | + public function onSuccess($jsCode) { |
|
| 152 | 152 | $form=$this->getForm(); |
| 153 | - $form->addValidationParam("onSuccess", $jsCode,"%function(event,fields){","}%"); |
|
| 153 | + $form->addValidationParam("onSuccess", $jsCode, "%function(event,fields){", "}%"); |
|
| 154 | 154 | return $form; |
| 155 | 155 | } |
| 156 | 156 | } |
| 157 | 157 | \ No newline at end of file |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * @version 1.001 |
| 17 | 17 | */ |
| 18 | 18 | class HtmlMessage extends HtmlSemDoubleElement { |
| 19 | - use AttachedTrait,HasTimeoutTrait; |
|
| 19 | + use AttachedTrait, HasTimeoutTrait; |
|
| 20 | 20 | protected $icon; |
| 21 | 21 | protected $close; |
| 22 | 22 | |
@@ -33,42 +33,42 @@ discard block |
||
| 33 | 33 | * @param string|HtmlSemDoubleElement $header |
| 34 | 34 | * @return \Ajax\semantic\html\collections\HtmlMessage |
| 35 | 35 | */ |
| 36 | - public function addHeader($header){ |
|
| 36 | + public function addHeader($header) { |
|
| 37 | 37 | $headerO=$header; |
| 38 | - if(\is_string($header)){ |
|
| 39 | - $headerO=new HtmlSemDoubleElement("header-".$this->identifier,"div"); |
|
| 38 | + if (\is_string($header)) { |
|
| 39 | + $headerO=new HtmlSemDoubleElement("header-".$this->identifier, "div"); |
|
| 40 | 40 | $headerO->setClass("header"); |
| 41 | 41 | $headerO->setContent($header); |
| 42 | 42 | } |
| 43 | - return $this->addContent($headerO,true); |
|
| 43 | + return $this->addContent($headerO, true); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - public function setHeader($header){ |
|
| 46 | + public function setHeader($header) { |
|
| 47 | 47 | return $this->addHeader($header); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - public function addList($elements,$ordered=false){ |
|
| 51 | - $list=new HtmlList("list-".$this->identifier,$elements); |
|
| 50 | + public function addList($elements, $ordered=false) { |
|
| 51 | + $list=new HtmlList("list-".$this->identifier, $elements); |
|
| 52 | 52 | $list->setOrdered($ordered); |
| 53 | 53 | $list->setClass("ui list"); |
| 54 | 54 | $this->addContent($list); |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | - public function setIcon($icon){ |
|
| 57 | + public function setIcon($icon) { |
|
| 58 | 58 | $this->addToProperty("class", "icon"); |
| 59 | - $this->wrapContent("<div class='content'>","</div>"); |
|
| 59 | + $this->wrapContent("<div class='content'>", "</div>"); |
|
| 60 | 60 | $this->icon=new HtmlIcon("icon-".$this->identifier, $icon); |
| 61 | 61 | return $this; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - public function addLoader($loaderIcon="notched circle"){ |
|
| 64 | + public function addLoader($loaderIcon="notched circle") { |
|
| 65 | 65 | $this->setIcon($loaderIcon); |
| 66 | 66 | $this->icon->addToIcon("loading"); |
| 67 | 67 | return $this; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - public function setDismissable($dismiss=true){ |
|
| 71 | - if($dismiss===true) |
|
| 70 | + public function setDismissable($dismiss=true) { |
|
| 71 | + if ($dismiss===true) |
|
| 72 | 72 | $this->close=new HtmlIcon("close-".$this->identifier, "close"); |
| 73 | 73 | else |
| 74 | 74 | $this->close=NULL; |
@@ -79,43 +79,43 @@ discard block |
||
| 79 | 79 | * {@inheritDoc} |
| 80 | 80 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
| 81 | 81 | */ |
| 82 | - public function run(JsUtils $js){ |
|
| 83 | - if(!isset($this->_bsComponent)){ |
|
| 84 | - if(isset($this->close)){ |
|
| 82 | + public function run(JsUtils $js) { |
|
| 83 | + if (!isset($this->_bsComponent)) { |
|
| 84 | + if (isset($this->close)) { |
|
| 85 | 85 | $js->execOn("click", "#".$this->identifier." .close", "$(this).closest('.message').transition({$this->_closeTransition})"); |
| 86 | 86 | } |
| 87 | - if(isset($this->_timeout)){ |
|
| 88 | - $js->exec("setTimeout(function() { $('#{$this->identifier}').transition({$this->_closeTransition}); }, {$this->_timeout});",true); |
|
| 87 | + if (isset($this->_timeout)) { |
|
| 88 | + $js->exec("setTimeout(function() { $('#{$this->identifier}').transition({$this->_closeTransition}); }, {$this->_timeout});", true); |
|
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | 91 | return parent::run($js); |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - public function setState($visible=true){ |
|
| 95 | - $visible=($visible===true)?"visible":"hidden"; |
|
| 96 | - return $this->addToPropertyCtrl("class", $visible, array("visible","hidden")); |
|
| 94 | + public function setState($visible=true) { |
|
| 95 | + $visible=($visible===true) ? "visible" : "hidden"; |
|
| 96 | + return $this->addToPropertyCtrl("class", $visible, array("visible", "hidden")); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - public function setVariation($value="floating"){ |
|
| 100 | - return $this->addToPropertyCtrl("class", $value, array("floating","compact")); |
|
| 99 | + public function setVariation($value="floating") { |
|
| 100 | + return $this->addToPropertyCtrl("class", $value, array("floating", "compact")); |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - public function setStyle($style){ |
|
| 103 | + public function setStyle($style) { |
|
| 104 | 104 | return $this->addToPropertyCtrl("class", $style, Style::getConstants()); |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - public function setError(){ |
|
| 107 | + public function setError() { |
|
| 108 | 108 | return $this->setStyle("error"); |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - public function setWarning(){ |
|
| 111 | + public function setWarning() { |
|
| 112 | 112 | return $this->setStyle("warning"); |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - public function setMessage($message){ |
|
| 116 | - if(\is_array($this->content)){ |
|
| 115 | + public function setMessage($message) { |
|
| 116 | + if (\is_array($this->content)) { |
|
| 117 | 117 | $this->content[\sizeof($this->content)-1]=$message; |
| 118 | - }else |
|
| 118 | + } else |
|
| 119 | 119 | $this->setContent($message); |
| 120 | 120 | } |
| 121 | 121 | |