@@ -15,36 +15,36 @@ discard block |
||
| 15 | 15 | protected $_paramParts=array(); |
| 16 | 16 | |
| 17 | 17 | public function __construct($identifier, $header="", $content="", $actions=null) { |
| 18 | - parent::__construct($identifier, "div","ui modal"); |
|
| 19 | - if(isset($header)){ |
|
| 18 | + parent::__construct($identifier, "div", "ui modal"); |
|
| 19 | + if (isset($header)) { |
|
| 20 | 20 | $this->setHeader($header); |
| 21 | 21 | } |
| 22 | - if(isset($content)){ |
|
| 22 | + if (isset($content)) { |
|
| 23 | 23 | $this->setContent($content); |
| 24 | 24 | } |
| 25 | - if(isset($actions)){ |
|
| 25 | + if (isset($actions)) { |
|
| 26 | 26 | $this->setActions($actions); |
| 27 | 27 | } |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | public function setHeader($value) { |
| 31 | - $this->content["header"]=new HtmlSemDoubleElement("header-" . $this->identifier, "a", "header", $value); |
|
| 31 | + $this->content["header"]=new HtmlSemDoubleElement("header-".$this->identifier, "a", "header", $value); |
|
| 32 | 32 | return $this; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | public function setContent($value) { |
| 36 | - $this->content["content"]=new HtmlSemDoubleElement("content-" . $this->identifier, "div", "content", $value); |
|
| 36 | + $this->content["content"]=new HtmlSemDoubleElement("content-".$this->identifier, "div", "content", $value); |
|
| 37 | 37 | return $this; |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | public function setActions($actions) { |
| 41 | - $this->content["actions"]=new HtmlSemDoubleElement("content-" . $this->identifier, "div", "actions"); |
|
| 42 | - if(\is_array($actions)){ |
|
| 43 | - foreach ($actions as $action){ |
|
| 41 | + $this->content["actions"]=new HtmlSemDoubleElement("content-".$this->identifier, "div", "actions"); |
|
| 42 | + if (\is_array($actions)) { |
|
| 43 | + foreach ($actions as $action) { |
|
| 44 | 44 | $this->addAction($action); |
| 45 | 45 | } |
| 46 | 46 | } |
| 47 | - else{ |
|
| 47 | + else { |
|
| 48 | 48 | $this->addAction($actions); |
| 49 | 49 | } |
| 50 | 50 | return $this; |
@@ -54,17 +54,17 @@ discard block |
||
| 54 | 54 | * @param string|BaseHtml $action |
| 55 | 55 | * @return HtmlButton |
| 56 | 56 | */ |
| 57 | - public function addAction($action){ |
|
| 58 | - if(!$action instanceof BaseHtml){ |
|
| 57 | + public function addAction($action) { |
|
| 58 | + if (!$action instanceof BaseHtml) { |
|
| 59 | 59 | $class=""; |
| 60 | - if(\array_search($action, ["Okay","Yes","Validate"])!==false){ |
|
| 60 | + if (\array_search($action, ["Okay", "Yes", "Validate"])!==false) { |
|
| 61 | 61 | $class="approve"; |
| 62 | 62 | } |
| 63 | - if(\array_search($action, ["Close","Cancel","No"])!==false){ |
|
| 63 | + if (\array_search($action, ["Close", "Cancel", "No"])!==false) { |
|
| 64 | 64 | $class="cancel"; |
| 65 | 65 | } |
| 66 | - $action=new HtmlButton("action-".$this->identifier."-".JArray::count($this->content["actions"]->getContent()),$action); |
|
| 67 | - if($class!=="") |
|
| 66 | + $action=new HtmlButton("action-".$this->identifier."-".JArray::count($this->content["actions"]->getContent()), $action); |
|
| 67 | + if ($class!=="") |
|
| 68 | 68 | $action->addToProperty("class", $class); |
| 69 | 69 | } |
| 70 | 70 | return $this->addElementInPart($action, "actions"); |
@@ -74,66 +74,66 @@ discard block |
||
| 74 | 74 | * @param int $index |
| 75 | 75 | * @return HtmlButton |
| 76 | 76 | */ |
| 77 | - public function getAction($index){ |
|
| 77 | + public function getAction($index) { |
|
| 78 | 78 | return $this->content["actions"]->getContent()[$index]; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - public function addContent($content,$before=false){ |
|
| 82 | - $this->content["content"]->addContent($content,$before); |
|
| 81 | + public function addContent($content, $before=false) { |
|
| 82 | + $this->content["content"]->addContent($content, $before); |
|
| 83 | 83 | return $this; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - public function addImageContent($image,$description=NULL){ |
|
| 86 | + public function addImageContent($image, $description=NULL) { |
|
| 87 | 87 | $content=$this->content["content"]; |
| 88 | - if(isset($description)){ |
|
| 89 | - $description=new HtmlSemDoubleElement("description-".$this->identifier,"div","description",$description); |
|
| 90 | - $content->addContent($description,true); |
|
| 88 | + if (isset($description)) { |
|
| 89 | + $description=new HtmlSemDoubleElement("description-".$this->identifier, "div", "description", $description); |
|
| 90 | + $content->addContent($description, true); |
|
| 91 | 91 | } |
| 92 | - if($image!==""){ |
|
| 93 | - $img=new HtmlImage("image-".$this->identifier,$image,"","medium"); |
|
| 94 | - $content->addContent($img,true); |
|
| 95 | - $content->addToProperty("class","image"); |
|
| 92 | + if ($image!=="") { |
|
| 93 | + $img=new HtmlImage("image-".$this->identifier, $image, "", "medium"); |
|
| 94 | + $content->addContent($img, true); |
|
| 95 | + $content->addToProperty("class", "image"); |
|
| 96 | 96 | } |
| 97 | 97 | return $this; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - public function addIconContent($icon,$description=NULL){ |
|
| 100 | + public function addIconContent($icon, $description=NULL) { |
|
| 101 | 101 | $content=$this->content["content"]; |
| 102 | - if(isset($description)){ |
|
| 103 | - $description=new HtmlSemDoubleElement("description-".$this->identifier,"div","description",$description); |
|
| 104 | - $content->addContent($description,true); |
|
| 102 | + if (isset($description)) { |
|
| 103 | + $description=new HtmlSemDoubleElement("description-".$this->identifier, "div", "description", $description); |
|
| 104 | + $content->addContent($description, true); |
|
| 105 | 105 | } |
| 106 | - if($icon!==""){ |
|
| 107 | - $img=new HtmlIcon("image-".$this->identifier,$icon); |
|
| 108 | - $content->addContent($img,true); |
|
| 109 | - $content->addToProperty("class","image"); |
|
| 106 | + if ($icon!=="") { |
|
| 107 | + $img=new HtmlIcon("image-".$this->identifier, $icon); |
|
| 108 | + $content->addContent($img, true); |
|
| 109 | + $content->addToProperty("class", "image"); |
|
| 110 | 110 | } |
| 111 | 111 | return $this; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - private function addElementInPart($element,$part) { |
|
| 114 | + private function addElementInPart($element, $part) { |
|
| 115 | 115 | $this->content[$part]->addContent($element); |
| 116 | 116 | return $element; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - public function showDimmer($value){ |
|
| 120 | - $value=$value?"show":"hide"; |
|
| 119 | + public function showDimmer($value) { |
|
| 120 | + $value=$value ? "show" : "hide"; |
|
| 121 | 121 | $this->_paramParts[]=["'".$value." dimmer'"]; |
| 122 | 122 | return $this; |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - public function setInverted($recursive=true){ |
|
| 125 | + public function setInverted($recursive=true) { |
|
| 126 | 126 | $this->_params["inverted"]=true; |
| 127 | 127 | return $this; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - public function setBasic(){ |
|
| 130 | + public function setBasic() { |
|
| 131 | 131 | return $this->addToProperty("class", "basic"); |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | |
| 135 | - public function setTransition($value){ |
|
| 136 | - $this->_paramParts[]=["'setting'","'transition'","'".$value."'"]; |
|
| 135 | + public function setTransition($value) { |
|
| 136 | + $this->_paramParts[]=["'setting'", "'transition'", "'".$value."'"]; |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
@@ -143,8 +143,8 @@ discard block |
||
| 143 | 143 | * @param string $viewName |
| 144 | 144 | * @param $params The parameters to pass to the view |
| 145 | 145 | */ |
| 146 | - public function renderView(JsUtils $js,$initialController,$viewName, $params=array()) { |
|
| 147 | - return $this->setContent($js->renderContent($initialController, $viewName,$params)); |
|
| 146 | + public function renderView(JsUtils $js, $initialController, $viewName, $params=array()) { |
|
| 147 | + return $this->setContent($js->renderContent($initialController, $viewName, $params)); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
@@ -155,8 +155,8 @@ discard block |
||
| 155 | 155 | * @param string $actionName the action name |
| 156 | 156 | * @param array $params |
| 157 | 157 | */ |
| 158 | - public function forward(JsUtils $js,$initialControllerInstance,$controllerName,$actionName,$params=NULL){ |
|
| 159 | - return $this->setContent($js->forward($initialControllerInstance, $controllerName, $actionName,$params)); |
|
| 158 | + public function forward(JsUtils $js, $initialControllerInstance, $controllerName, $actionName, $params=NULL) { |
|
| 159 | + return $this->setContent($js->forward($initialControllerInstance, $controllerName, $actionName, $params)); |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile() |
| 167 | 167 | */ |
| 168 | 168 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 169 | - $this->content=JArray::sortAssociative($this->content, ["header","content","actions" ]); |
|
| 169 | + $this->content=JArray::sortAssociative($this->content, ["header", "content", "actions"]); |
|
| 170 | 170 | return parent::compile($js, $view); |
| 171 | 171 | } |
| 172 | 172 | /* |
@@ -174,8 +174,8 @@ discard block |
||
| 174 | 174 | * @see BaseHtml::run() |
| 175 | 175 | */ |
| 176 | 176 | public function run(JsUtils $js) { |
| 177 | - if(isset($this->_bsComponent)===false) |
|
| 178 | - $this->_bsComponent=$js->semantic()->modal("#".$this->identifier,$this->_params,$this->_paramParts); |
|
| 177 | + if (isset($this->_bsComponent)===false) |
|
| 178 | + $this->_bsComponent=$js->semantic()->modal("#".$this->identifier, $this->_params, $this->_paramParts); |
|
| 179 | 179 | $this->addEventsOnRun($js); |
| 180 | 180 | return $this->_bsComponent; |
| 181 | 181 | } |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | return $this->jsDo("hide"); |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - public function onHidden($js){ |
|
| 191 | + public function onHidden($js) { |
|
| 192 | 192 | $this->_params["onHidden"]=$js; |
| 193 | 193 | } |
| 194 | 194 | } |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | class JArray { |
| 6 | 6 | |
| 7 | 7 | public static function isAssociative($array) { |
| 8 | - return (array_values($array) !== $array); |
|
| 8 | + return (array_values($array)!==$array); |
|
| 9 | 9 | } |
| 10 | 10 | |
| 11 | 11 | public static function getValue($array, $key, $pos) { |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | return $array[$key]; |
| 14 | 14 | } |
| 15 | 15 | $values=array_values($array); |
| 16 | - if ($pos < sizeof($values)) |
|
| 16 | + if ($pos<sizeof($values)) |
|
| 17 | 17 | return $values[$pos]; |
| 18 | 18 | } |
| 19 | 19 | |
@@ -21,12 +21,12 @@ discard block |
||
| 21 | 21 | $result=NULL; |
| 22 | 22 | if (array_key_exists($key, $array)) { |
| 23 | 23 | $result=$array[$key]; |
| 24 | - if ($condition($result) === true) |
|
| 24 | + if ($condition($result)===true) |
|
| 25 | 25 | return $result; |
| 26 | 26 | } |
| 27 | 27 | $values=array_values($array); |
| 28 | - foreach ( $values as $val ) { |
|
| 29 | - if ($condition($val) === true) |
|
| 28 | + foreach ($values as $val) { |
|
| 29 | + if ($condition($val)===true) |
|
| 30 | 30 | return $val; |
| 31 | 31 | } |
| 32 | 32 | return $result; |
@@ -43,11 +43,11 @@ discard block |
||
| 43 | 43 | $result=""; |
| 44 | 44 | if (\is_array($glue)) { |
| 45 | 45 | $size=\sizeof($pieces); |
| 46 | - if ($size > 0) { |
|
| 47 | - for($i=0; $i < $size - 1; $i++) { |
|
| 48 | - $result.=$pieces[$i] . @$glue[$i]; |
|
| 46 | + if ($size>0) { |
|
| 47 | + for ($i=0; $i<$size-1; $i++) { |
|
| 48 | + $result.=$pieces[$i].@$glue[$i]; |
|
| 49 | 49 | } |
| 50 | - $result.=$pieces[$size - 1]; |
|
| 50 | + $result.=$pieces[$size-1]; |
|
| 51 | 51 | } |
| 52 | 52 | } else { |
| 53 | 53 | $result=\implode($glue, $pieces); |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | public static function dimension($array) { |
| 59 | 59 | if (\is_array(reset($array))) { |
| 60 | - $return=self::dimension(reset($array)) + 1; |
|
| 60 | + $return=self::dimension(reset($array))+1; |
|
| 61 | 61 | } else { |
| 62 | 62 | $return=1; |
| 63 | 63 | } |
@@ -65,8 +65,8 @@ discard block |
||
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | public static function sortAssociative($array, $sortedKeys=array()) { |
| 68 | - $newArray=array (); |
|
| 69 | - foreach ( $sortedKeys as $key ) { |
|
| 68 | + $newArray=array(); |
|
| 69 | + foreach ($sortedKeys as $key) { |
|
| 70 | 70 | if (\array_key_exists($key, $array)) { |
| 71 | 71 | $newArray[$key]=$array[$key]; |
| 72 | 72 | } |
@@ -76,9 +76,9 @@ discard block |
||
| 76 | 76 | |
| 77 | 77 | public static function moveElementTo(&$array, $from, $to) { |
| 78 | 78 | $result=false; |
| 79 | - if(isset($array)){ |
|
| 80 | - if(isset($array[$from])){ |
|
| 81 | - $out = array_splice($array, $from, 1); |
|
| 79 | + if (isset($array)) { |
|
| 80 | + if (isset($array[$from])) { |
|
| 81 | + $out=array_splice($array, $from, 1); |
|
| 82 | 82 | array_splice($array, $to, 0, $out); |
| 83 | 83 | $result=true; |
| 84 | 84 | } |
@@ -86,10 +86,10 @@ discard block |
||
| 86 | 86 | return $result; |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - public static function swapElements(&$array,$index1,$index2){ |
|
| 89 | + public static function swapElements(&$array, $index1, $index2) { |
|
| 90 | 90 | $result=false; |
| 91 | - if(isset($array)){ |
|
| 92 | - if(isset($array[$index1])&& isset($array[$index2])){ |
|
| 91 | + if (isset($array)) { |
|
| 92 | + if (isset($array[$index1]) && isset($array[$index2])) { |
|
| 93 | 93 | $tmp=$array[$index1]; |
| 94 | 94 | $array[$index1]=$array[$index2]; |
| 95 | 95 | $array[$index2]=$tmp; |
@@ -100,33 +100,33 @@ discard block |
||
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | |
| 103 | - public static function modelArray($objects,$identifierFunction=NULL,$modelFunction=NULL){ |
|
| 103 | + public static function modelArray($objects, $identifierFunction=NULL, $modelFunction=NULL) { |
|
| 104 | 104 | $result=[]; |
| 105 | - if(isset($modelFunction)===false){ |
|
| 105 | + if (isset($modelFunction)===false) { |
|
| 106 | 106 | $modelFunction="__toString"; |
| 107 | 107 | } |
| 108 | - if(isset($identifierFunction)===false){ |
|
| 109 | - foreach ($objects as $object){ |
|
| 108 | + if (isset($identifierFunction)===false) { |
|
| 109 | + foreach ($objects as $object) { |
|
| 110 | 110 | $result[]=self::callFunction($object, $modelFunction); |
| 111 | 111 | } |
| 112 | - }else{ |
|
| 113 | - foreach ($objects as $object){ |
|
| 112 | + } else { |
|
| 113 | + foreach ($objects as $object) { |
|
| 114 | 114 | $result[self::callFunction($object, $identifierFunction)]=self::callFunction($object, $modelFunction); |
| 115 | 115 | } |
| 116 | 116 | } |
| 117 | 117 | return $result; |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - private static function callFunction($object,$callback){ |
|
| 121 | - if(\is_string($callback)) |
|
| 122 | - return \call_user_func(array($object, $callback),[]); |
|
| 123 | - else if (\is_callable($callback)){ |
|
| 120 | + private static function callFunction($object, $callback) { |
|
| 121 | + if (\is_string($callback)) |
|
| 122 | + return \call_user_func(array($object, $callback), []); |
|
| 123 | + else if (\is_callable($callback)) { |
|
| 124 | 124 | return $callback($object); |
| 125 | 125 | } |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - public static function count($array){ |
|
| 129 | - if(\is_array($array)){ |
|
| 128 | + public static function count($array) { |
|
| 129 | + if (\is_array($array)) { |
|
| 130 | 130 | return \sizeof($array); |
| 131 | 131 | } |
| 132 | 132 | return 0; |