@@ -2,63 +2,63 @@ |
||
| 2 | 2 | namespace Ajax\service; |
| 3 | 3 | class JString { |
| 4 | 4 | |
| 5 | - public static function contains($hay,$needle){ |
|
| 6 | - return strpos($hay, $needle) !== false; |
|
| 5 | + public static function contains($hay, $needle) { |
|
| 6 | + return strpos($hay, $needle)!==false; |
|
| 7 | 7 | } |
| 8 | 8 | public static function startswith($hay, $needle) { |
| 9 | - return substr($hay, 0, strlen($needle)) === $needle; |
|
| 9 | + return substr($hay, 0, strlen($needle))===$needle; |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | public static function endswith($hay, $needle) { |
| 13 | - return substr($hay, -strlen($needle)) === $needle; |
|
| 13 | + return substr($hay, -strlen($needle))===$needle; |
|
| 14 | 14 | } |
| 15 | 15 | |
| 16 | - public static function isNull($s){ |
|
| 16 | + public static function isNull($s) { |
|
| 17 | 17 | return (!isset($s) || NULL===$s || ""===$s); |
| 18 | 18 | } |
| 19 | - public static function isNotNull($s){ |
|
| 19 | + public static function isNotNull($s) { |
|
| 20 | 20 | return (isset($s) && NULL!==$s && ""!==$s); |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | - public static function isBoolean($value){ |
|
| 23 | + public static function isBoolean($value) { |
|
| 24 | 24 | return \is_bool($value) || $value==1 || $value==0; |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - public static function isBooleanTrue($value){ |
|
| 27 | + public static function isBooleanTrue($value) { |
|
| 28 | 28 | return $value==1 || $value; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - public static function isBooleanFalse($value){ |
|
| 31 | + public static function isBooleanFalse($value) { |
|
| 32 | 32 | return $value==0 || !$value; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - public static function camelCaseToSeparated($input,$separator=" "){ |
|
| 35 | + public static function camelCaseToSeparated($input, $separator=" ") { |
|
| 36 | 36 | return strtolower(preg_replace('/(?<!^)[A-Z]/', $separator.'$0', $input)); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - public static function replaceAtFirst($subject,$from, $to){ |
|
| 40 | - $from = '/\A'.preg_quote($from, '/').'/'; |
|
| 39 | + public static function replaceAtFirst($subject, $from, $to) { |
|
| 40 | + $from='/\A'.preg_quote($from, '/').'/'; |
|
| 41 | 41 | return \preg_replace($from, $to, $subject, 1); |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - public static function replaceAtLast($subject,$from, $to){ |
|
| 45 | - $from = '/'.preg_quote($from, '/').'\z/'; |
|
| 44 | + public static function replaceAtLast($subject, $from, $to) { |
|
| 45 | + $from='/'.preg_quote($from, '/').'\z/'; |
|
| 46 | 46 | return \preg_replace($from, $to, $subject, 1); |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - public static function replaceAtFirstAndLast($subject,$fromFirst,$toFirst,$fromLast,$toLast){ |
|
| 49 | + public static function replaceAtFirstAndLast($subject, $fromFirst, $toFirst, $fromLast, $toLast) { |
|
| 50 | 50 | $s=self::replaceAtFirst($subject, $fromFirst, $toFirst); |
| 51 | 51 | return self::replaceAtLast($s, $fromLast, $toLast); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - public static function getValueBetween(&$str,$before="{{",$after="}}"){ |
|
| 54 | + public static function getValueBetween(&$str, $before="{{", $after="}}") { |
|
| 55 | 55 | $matches=[]; |
| 56 | 56 | $result=null; |
| 57 | 57 | $_before=\preg_quote($before); |
| 58 | 58 | $_after=\preg_quote($after); |
| 59 | - if(\preg_match('/'.$_before.'(.*?)'.$_after.'/s', $str, $matches)===1){ |
|
| 59 | + if (\preg_match('/'.$_before.'(.*?)'.$_after.'/s', $str, $matches)===1) { |
|
| 60 | 60 | $result=$matches[1]; |
| 61 | - $str=\str_replace($before.$result.$after,"", $str); |
|
| 61 | + $str=\str_replace($before.$result.$after, "", $str); |
|
| 62 | 62 | } |
| 63 | 63 | return $result; |
| 64 | 64 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * @param string $event |
| 22 | 22 | * @param boolean $multiple |
| 23 | 23 | */ |
| 24 | - public function __construct($table,$class="active",$event="click",$multiple=false){ |
|
| 24 | + public function __construct($table, $class="active", $event="click", $multiple=false) { |
|
| 25 | 25 | $this->table=$table; |
| 26 | 26 | $this->class=$class; |
| 27 | 27 | $this->event=$event; |
@@ -55,12 +55,12 @@ discard block |
||
| 55 | 55 | return $this; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - public function compile(){ |
|
| 58 | + public function compile() { |
|
| 59 | 59 | $multiple=""; |
| 60 | - if(!$this->multiple){ |
|
| 60 | + if (!$this->multiple) { |
|
| 61 | 61 | $multiple="$(this).closest('tbody').children('tr').removeClass('".$this->class."');"; |
| 62 | 62 | } |
| 63 | - $this->table->onRow($this->event, $multiple."$(this).toggleClass('".$this->class."');",false,false); |
|
| 63 | + $this->table->onRow($this->event, $multiple."$(this).toggleClass('".$this->class."');", false, false); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | } |
| 67 | 67 | \ No newline at end of file |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | return $this->setParam("context", $value); |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | - public function setOffset($offset=0){ |
|
| 24 | + public function setOffset($offset=0) { |
|
| 25 | 25 | return $this->setParam("offset", $offset); |
| 26 | 26 | } |
| 27 | 27 | |
@@ -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 | } |