@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | * @param string $action one of "select","auto","activate","combo","nothing","hide" |
18 | 18 | * @return \Ajax\semantic\components\Dropdown |
19 | 19 | */ |
20 | - public function setAction($action){ |
|
21 | - return $this->setParamCtrl("action", $action,array("select","auto","activate","combo","nothing","hide")); |
|
20 | + public function setAction($action) { |
|
21 | + return $this->setParamCtrl("action", $action, array("select", "auto", "activate", "combo", "nothing", "hide")); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | * @param string $event Event used to trigger dropdown (Hover, Click, Custom Event) |
27 | 27 | * @return \Ajax\semantic\components\Dropdown |
28 | 28 | */ |
29 | - public function setOn($event){ |
|
29 | + public function setOn($event) { |
|
30 | 30 | return $this->setParam("on", $event); |
31 | 31 | } |
32 | 32 | |
33 | - public function setFullTextSearch($value){ |
|
33 | + public function setFullTextSearch($value) { |
|
34 | 34 | return $this->setParam("fullTextSearch", $value); |
35 | 35 | } |
36 | 36 | } |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | * @param array $instances |
18 | 18 | * @return DataTable |
19 | 19 | */ |
20 | - public function dataTable($identifier,$model, $instances){ |
|
21 | - return $this->addHtmlComponent(new DataTable($identifier,$model,$instances)); |
|
20 | + public function dataTable($identifier, $model, $instances) { |
|
21 | + return $this->addHtmlComponent(new DataTable($identifier, $model, $instances)); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | * @param array $instances |
28 | 28 | * @return JsonDataTable |
29 | 29 | */ |
30 | - public function jsonDataTable($identifier,$model, $instances){ |
|
31 | - return $this->addHtmlComponent(new JsonDataTable($identifier,$model,$instances)); |
|
30 | + public function jsonDataTable($identifier, $model, $instances) { |
|
31 | + return $this->addHtmlComponent(new JsonDataTable($identifier, $model, $instances)); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -36,8 +36,8 @@ discard block |
||
36 | 36 | * @param object $instance |
37 | 37 | * @return DataElement |
38 | 38 | */ |
39 | - public function dataElement($identifier, $instance){ |
|
40 | - return $this->addHtmlComponent(new DataElement($identifier,$instance)); |
|
39 | + public function dataElement($identifier, $instance) { |
|
40 | + return $this->addHtmlComponent(new DataElement($identifier, $instance)); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -45,19 +45,19 @@ discard block |
||
45 | 45 | * @param object $instance |
46 | 46 | * @return DataForm |
47 | 47 | */ |
48 | - public function dataForm($identifier, $instance){ |
|
49 | - return $this->addHtmlComponent(new DataForm($identifier,$instance)); |
|
48 | + public function dataForm($identifier, $instance) { |
|
49 | + return $this->addHtmlComponent(new DataForm($identifier, $instance)); |
|
50 | 50 | } |
51 | 51 | |
52 | - public function defaultLogin($identifier,$instance=null){ |
|
53 | - return $this->addHtmlComponent(FormLogin::regular($identifier,$instance)); |
|
52 | + public function defaultLogin($identifier, $instance=null) { |
|
53 | + return $this->addHtmlComponent(FormLogin::regular($identifier, $instance)); |
|
54 | 54 | } |
55 | 55 | |
56 | - public function smallLogin($identifier,$instance=null){ |
|
57 | - return $this->addHtmlComponent(FormLogin::small($identifier,$instance)); |
|
56 | + public function smallLogin($identifier, $instance=null) { |
|
57 | + return $this->addHtmlComponent(FormLogin::small($identifier, $instance)); |
|
58 | 58 | } |
59 | 59 | |
60 | - public function segmentedLogin($identifier,$instance=null){ |
|
61 | - return $this->addHtmlComponent(FormLogin::attachedSegment($identifier,$instance)); |
|
60 | + public function segmentedLogin($identifier, $instance=null) { |
|
61 | + return $this->addHtmlComponent(FormLogin::attachedSegment($identifier, $instance)); |
|
62 | 62 | } |
63 | 63 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | * @return string |
18 | 18 | */ |
19 | 19 | public function addClass($element='this', $class='', $immediatly=false) { |
20 | - return $this->js->_genericCallValue('addClass',$element, $class, $immediatly); |
|
20 | + return $this->js->_genericCallValue('addClass', $element, $class, $immediatly); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | * @param boolean $immediatly defers the execution if set to false |
28 | 28 | * @return string |
29 | 29 | */ |
30 | - public function after($to, $element, $immediatly=false){ |
|
31 | - return $this->js->_genericCallElement('after',$to, $element, $immediatly); |
|
30 | + public function after($to, $element, $immediatly=false) { |
|
31 | + return $this->js->_genericCallElement('after', $to, $element, $immediatly); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | * @param boolean $immediatly defers the execution if set to false |
39 | 39 | * @return string |
40 | 40 | */ |
41 | - public function before($to, $element, $immediatly=false){ |
|
42 | - return $this->js->_genericCallElement('before',$to, $element, $immediatly); |
|
41 | + public function before($to, $element, $immediatly=false) { |
|
42 | + return $this->js->_genericCallElement('before', $to, $element, $immediatly); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -59,8 +59,8 @@ discard block |
||
59 | 59 | * @param string $value |
60 | 60 | * @param boolean $immediatly defers the execution if set to false |
61 | 61 | */ |
62 | - public function val($element='this',$value='',$immediatly=false){ |
|
63 | - return $this->js->_genericCallValue('val',$element,$value,$immediatly); |
|
62 | + public function val($element='this', $value='', $immediatly=false) { |
|
63 | + return $this->js->_genericCallValue('val', $element, $value, $immediatly); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | * @param boolean $immediatly defers the execution if set to false |
71 | 71 | */ |
72 | 72 | public function html($element='this', $value='', $immediatly=false) { |
73 | - return $this->js->_genericCallValue('html',$element, $value, $immediatly); |
|
73 | + return $this->js->_genericCallValue('html', $element, $value, $immediatly); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @return string |
96 | 96 | */ |
97 | 97 | public function append($to, $element, $immediatly=false) { |
98 | - return $this->js->_genericCallElement('append',$to, $element, $immediatly); |
|
98 | + return $this->js->_genericCallElement('append', $to, $element, $immediatly); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | * @return string |
107 | 107 | */ |
108 | 108 | public function prepend($to, $element, $immediatly=false) { |
109 | - return $this->js->_genericCallElement('prepend',$to, $element, $immediatly); |
|
109 | + return $this->js->_genericCallElement('prepend', $to, $element, $immediatly); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | /** |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | * @return string |
158 | 158 | */ |
159 | 159 | public function removeClass($element='this', $class='', $immediatly=false) { |
160 | - return $this->js->_genericCall('removeClass',$element, $class, $immediatly); |
|
160 | + return $this->js->_genericCall('removeClass', $element, $class, $immediatly); |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | /** |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * @return string |
219 | 219 | */ |
220 | 220 | public function toggleClass($element='this', $class='', $immediatly=false) { |
221 | - return $this->js->_genericCallValue('toggleClass',$element, $class, $immediatly); |
|
221 | + return $this->js->_genericCallValue('toggleClass', $element, $class, $immediatly); |
|
222 | 222 | } |
223 | 223 | |
224 | 224 | /** |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | $preventDefault=false; |
295 | 295 | $immediatly=true; |
296 | 296 | extract($parameters); |
297 | - return $this->js->_doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param, $preventDefault, $stopPropagation, $jsCallback,$immediatly); |
|
297 | + return $this->js->_doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param, $preventDefault, $stopPropagation, $jsCallback, $immediatly); |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | /** |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | $preventDefault=false; |
322 | 322 | $immediatly=true; |
323 | 323 | extract($parameters); |
324 | - $script=$this->js->_execOn($element, $event, $js, $preventDefault, $stopPropagation,$immediatly); |
|
324 | + $script=$this->js->_execOn($element, $event, $js, $preventDefault, $stopPropagation, $immediatly); |
|
325 | 325 | return $script; |
326 | 326 | } |
327 | 327 | } |
@@ -21,8 +21,8 @@ discard block |
||
21 | 21 | protected $attr; |
22 | 22 | |
23 | 23 | |
24 | - public function __construct($identifier,$tagName){ |
|
25 | - parent::__construct($identifier,$tagName); |
|
24 | + public function __construct($identifier, $tagName) { |
|
25 | + parent::__construct($identifier, $tagName); |
|
26 | 26 | $this->root=""; |
27 | 27 | $this->attr="data-ajax"; |
28 | 28 | } |
@@ -33,11 +33,11 @@ discard block |
||
33 | 33 | * @param string $targetSelector the target of the get |
34 | 34 | * @return HtmlNavElement |
35 | 35 | */ |
36 | - public function autoGetOnClick($targetSelector){ |
|
37 | - return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr)); |
|
36 | + public function autoGetOnClick($targetSelector) { |
|
37 | + return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr)); |
|
38 | 38 | } |
39 | 39 | |
40 | - public function contentAsString(){ |
|
40 | + public function contentAsString() { |
|
41 | 41 | return implode("", $this->content); |
42 | 42 | } |
43 | 43 | } |
@@ -23,19 +23,19 @@ |
||
23 | 23 | return $this; |
24 | 24 | } |
25 | 25 | |
26 | - public function addGlyph($glyphicon,$before=true){ |
|
26 | + public function addGlyph($glyphicon, $before=true) { |
|
27 | 27 | $glyph=new HtmlGlyphicon(""); |
28 | 28 | $glyph->setGlyphicon($glyphicon); |
29 | - $this->addContent($glyph,$before); |
|
29 | + $this->addContent($glyph, $before); |
|
30 | 30 | return $this; |
31 | 31 | } |
32 | 32 | |
33 | - public function wrapContentWithGlyph($glyphBefore,$glyphAfter=""){ |
|
33 | + public function wrapContentWithGlyph($glyphBefore, $glyphAfter="") { |
|
34 | 34 | $before=HtmlGlyphicon::getGlyphicon($glyphBefore)." "; |
35 | 35 | $after=""; |
36 | - if($glyphAfter!==""){ |
|
36 | + if ($glyphAfter!=="") { |
|
37 | 37 | $after=" ".HtmlGlyphicon::getGlyphicon($glyphAfter); |
38 | 38 | } |
39 | - return $this->wrapContent($before,$after); |
|
39 | + return $this->wrapContent($before, $after); |
|
40 | 40 | } |
41 | 41 | } |
@@ -89,8 +89,9 @@ discard block |
||
89 | 89 | * @return \Ajax\bootstrap\html\HtmlPanel default : "panel-default" |
90 | 90 | */ |
91 | 91 | public function setStyle($cssStyle) { |
92 | - if (!PhalconUtils::startsWith($cssStyle, "panel")) |
|
93 | - $cssStyle="panel".$cssStyle; |
|
92 | + if (!PhalconUtils::startsWith($cssStyle, "panel")) { |
|
93 | + $cssStyle="panel".$cssStyle; |
|
94 | + } |
|
94 | 95 | return $this->addToPropertyCtrl("class", $cssStyle, CssRef::Styles("panel")); |
95 | 96 | } |
96 | 97 | |
@@ -132,7 +133,8 @@ discard block |
||
132 | 133 | * @return $this default : false |
133 | 134 | */ |
134 | 135 | public function show($value) { |
135 | - if ($this->_collapsable) |
|
136 | - $this->_showOnStartup=$value; |
|
136 | + if ($this->_collapsable) { |
|
137 | + $this->_showOnStartup=$value; |
|
138 | + } |
|
137 | 139 | } |
138 | 140 | } |
@@ -62,15 +62,15 @@ |
||
62 | 62 | */ |
63 | 63 | public function setIdentifier($identifier) { |
64 | 64 | parent::setIdentifier($identifier); |
65 | - if($this->content instanceof HtmlLink){ |
|
65 | + if ($this->content instanceof HtmlLink) { |
|
66 | 66 | $this->content->setIdentifier("link-".$identifier); |
67 | 67 | } |
68 | 68 | } |
69 | - public function setActive($value=true){ |
|
70 | - $this->setProperty("class", ($value)?"active":""); |
|
69 | + public function setActive($value=true) { |
|
70 | + $this->setProperty("class", ($value) ? "active" : ""); |
|
71 | 71 | } |
72 | 72 | |
73 | - public function disable(){ |
|
73 | + public function disable() { |
|
74 | 74 | $this->setProperty("class", "disabled"); |
75 | 75 | } |
76 | 76 | } |
@@ -4,34 +4,34 @@ |
||
4 | 4 | |
5 | 5 | use micro\controllers\Startup; |
6 | 6 | use micro\utils\RequestUtils; |
7 | -class JsUtils extends \Ajax\JsUtils{ |
|
7 | +class JsUtils extends \Ajax\JsUtils { |
|
8 | 8 | |
9 | - public function getUrl($url){ |
|
9 | + public function getUrl($url) { |
|
10 | 10 | return RequestUtils::getUrl($url); |
11 | 11 | } |
12 | 12 | |
13 | - public function addViewElement($identifier,$content,&$view){ |
|
13 | + public function addViewElement($identifier, $content, &$view) { |
|
14 | 14 | $controls=$view->getVar("q"); |
15 | - if (isset($controls) === false) { |
|
16 | - $controls=array (); |
|
15 | + if (isset($controls)===false) { |
|
16 | + $controls=array(); |
|
17 | 17 | } |
18 | 18 | $controls[$identifier]=$content; |
19 | 19 | $view->setVar("q", $controls); |
20 | 20 | } |
21 | 21 | |
22 | - public function createScriptVariable(&$view,$view_var, $output){ |
|
23 | - $view->setVar($view_var,$output); |
|
22 | + public function createScriptVariable(&$view, $view_var, $output) { |
|
23 | + $view->setVar($view_var, $output); |
|
24 | 24 | } |
25 | 25 | |
26 | - public function forward($initialController,$controller,$action,$params=array()){ |
|
27 | - return $initialController->forward($controller,$action,$params,true,true,true); |
|
26 | + public function forward($initialController, $controller, $action, $params=array()) { |
|
27 | + return $initialController->forward($controller, $action, $params, true, true, true); |
|
28 | 28 | } |
29 | 29 | |
30 | - public function renderContent($initialControllerInstance,$viewName, $params=NULL) { |
|
31 | - return $initialControllerInstance->loadView($viewName,$params,true); |
|
30 | + public function renderContent($initialControllerInstance, $viewName, $params=NULL) { |
|
31 | + return $initialControllerInstance->loadView($viewName, $params, true); |
|
32 | 32 | } |
33 | 33 | |
34 | - public function fromDispatcher($dispatcher){ |
|
34 | + public function fromDispatcher($dispatcher) { |
|
35 | 35 | return Startup::$urlParts; |
36 | 36 | } |
37 | 37 | } |
@@ -4,24 +4,24 @@ discard block |
||
4 | 4 | |
5 | 5 | use Illuminate\Support\Facades\App; |
6 | 6 | |
7 | -class JsUtils extends \Ajax\JsUtils{ |
|
8 | - public function getUrl($url){ |
|
7 | +class JsUtils extends \Ajax\JsUtils { |
|
8 | + public function getUrl($url) { |
|
9 | 9 | return \url($url); |
10 | 10 | } |
11 | - public function addViewElement($identifier,$content,&$view){ |
|
11 | + public function addViewElement($identifier, $content, &$view) { |
|
12 | 12 | $controls=$view->__get("q"); |
13 | - if (isset($controls) === false) { |
|
14 | - $controls=array (); |
|
13 | + if (isset($controls)===false) { |
|
14 | + $controls=array(); |
|
15 | 15 | } |
16 | 16 | $controls[$identifier]=$content; |
17 | 17 | $view->__set("q", $controls); |
18 | 18 | } |
19 | 19 | |
20 | - public function createScriptVariable(&$view,$view_var, $output){ |
|
21 | - $view->__set($view_var,$output); |
|
20 | + public function createScriptVariable(&$view, $view_var, $output) { |
|
21 | + $view->__set($view_var, $output); |
|
22 | 22 | } |
23 | 23 | |
24 | - public function forward($initialControllerInstance,$controllerName,$actionName,$params=NULL){ |
|
24 | + public function forward($initialControllerInstance, $controllerName, $actionName, $params=NULL) { |
|
25 | 25 | \ob_start(); |
26 | 26 | App::make($controllerName)->{$actionName}($params); |
27 | 27 | $result=\ob_get_contents(); |
@@ -29,11 +29,11 @@ discard block |
||
29 | 29 | return $result; |
30 | 30 | } |
31 | 31 | |
32 | - public function renderContent($initialControllerInstance,$viewName, $params=NULL) { |
|
33 | - return \view()->make($viewName,$params)->render(); |
|
32 | + public function renderContent($initialControllerInstance, $viewName, $params=NULL) { |
|
33 | + return \view()->make($viewName, $params)->render(); |
|
34 | 34 | } |
35 | 35 | |
36 | - public function fromDispatcher($dispatcher){ |
|
36 | + public function fromDispatcher($dispatcher) { |
|
37 | 37 | return $dispatcher->segments(); |
38 | 38 | } |
39 | 39 | } |