@@ -99,12 +99,12 @@ |
||
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
102 | - * Adds an image |
|
103 | - * @param string $src |
|
104 | - * @param string $alt |
|
105 | - * @param boolean $before |
|
106 | - * @return HtmlImg |
|
107 | - */ |
|
102 | + * Adds an image |
|
103 | + * @param string $src |
|
104 | + * @param string $alt |
|
105 | + * @param boolean $before |
|
106 | + * @return HtmlImg |
|
107 | + */ |
|
108 | 108 | public function addImage($src, $alt="", $before=true) { |
109 | 109 | $img=new HtmlImg("image-" . $this->identifier, $src, $alt); |
110 | 110 | $img->setClass(""); |
@@ -50,14 +50,14 @@ |
||
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
53 | - * render the content of $controller::$action and set the response to a new panel |
|
54 | - * @param JsUtils $js |
|
55 | - * @param string $title The panel title |
|
56 | - * @param object $initialController |
|
57 | - * @param string $controller a Phalcon controller |
|
58 | - * @param string $action a Phalcon action |
|
59 | - * @param array $params |
|
60 | - */ |
|
53 | + * render the content of $controller::$action and set the response to a new panel |
|
54 | + * @param JsUtils $js |
|
55 | + * @param string $title The panel title |
|
56 | + * @param object $initialController |
|
57 | + * @param string $controller a Phalcon controller |
|
58 | + * @param string $action a Phalcon action |
|
59 | + * @param array $params |
|
60 | + */ |
|
61 | 61 | public function forwardPanel(JsUtils $js,$title,$initialController,$controller,$action,$params=array()){ |
62 | 62 | return $this->addPanel($title, $js->forward($initialController, $controller, $action,$params)); |
63 | 63 | } |
@@ -11,45 +11,45 @@ |
||
11 | 11 | use Ajax\semantic\traits\SemanticWidgetsTrait; |
12 | 12 | |
13 | 13 | class Semantic extends BaseGui { |
14 | - use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait, |
|
15 | - SemanticHtmlModulesTrait,SemanticHtmlViewsTrait,SemanticWidgetsTrait; |
|
16 | - |
|
17 | - private $language; |
|
18 | - |
|
19 | - private $inverted; |
|
20 | - |
|
21 | - public function __construct($autoCompile=true) { |
|
22 | - parent::__construct($autoCompile); |
|
23 | - } |
|
24 | - |
|
25 | - |
|
26 | - public function setLanguage($language){ |
|
27 | - if($language!==$this->language){ |
|
28 | - $file=\realpath(dirname(__FILE__)."/semantic/components/validation/languages/".$language.".js"); |
|
29 | - if(\file_exists($file)){ |
|
30 | - $script=\file_get_contents($file); |
|
31 | - $this->js->exec($script,true); |
|
32 | - $this->language=$language; |
|
33 | - } |
|
34 | - } |
|
35 | - } |
|
36 | - |
|
37 | - public function compileHtml(JsUtils $js = NULL, &$view = NULL) { |
|
38 | - if($this->inverted==null){ |
|
39 | - parent::compileHtml($js,$view); |
|
40 | - }else { |
|
41 | - foreach ($this->htmlComponents as $htmlComponent) { |
|
42 | - $htmlComponent->setInverted(true); |
|
43 | - $htmlComponent->compile($js, $view); |
|
44 | - } |
|
45 | - } |
|
46 | - } |
|
47 | - |
|
48 | - public function setInverted($inverted='inverted'){ |
|
49 | - $this->inverted=$inverted; |
|
50 | - } |
|
51 | - |
|
52 | - public function getInverted(){ |
|
53 | - return $this->inverted; |
|
54 | - } |
|
14 | + use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait, |
|
15 | + SemanticHtmlModulesTrait,SemanticHtmlViewsTrait,SemanticWidgetsTrait; |
|
16 | + |
|
17 | + private $language; |
|
18 | + |
|
19 | + private $inverted; |
|
20 | + |
|
21 | + public function __construct($autoCompile=true) { |
|
22 | + parent::__construct($autoCompile); |
|
23 | + } |
|
24 | + |
|
25 | + |
|
26 | + public function setLanguage($language){ |
|
27 | + if($language!==$this->language){ |
|
28 | + $file=\realpath(dirname(__FILE__)."/semantic/components/validation/languages/".$language.".js"); |
|
29 | + if(\file_exists($file)){ |
|
30 | + $script=\file_get_contents($file); |
|
31 | + $this->js->exec($script,true); |
|
32 | + $this->language=$language; |
|
33 | + } |
|
34 | + } |
|
35 | + } |
|
36 | + |
|
37 | + public function compileHtml(JsUtils $js = NULL, &$view = NULL) { |
|
38 | + if($this->inverted==null){ |
|
39 | + parent::compileHtml($js,$view); |
|
40 | + }else { |
|
41 | + foreach ($this->htmlComponents as $htmlComponent) { |
|
42 | + $htmlComponent->setInverted(true); |
|
43 | + $htmlComponent->compile($js, $view); |
|
44 | + } |
|
45 | + } |
|
46 | + } |
|
47 | + |
|
48 | + public function setInverted($inverted='inverted'){ |
|
49 | + $this->inverted=$inverted; |
|
50 | + } |
|
51 | + |
|
52 | + public function getInverted(){ |
|
53 | + return $this->inverted; |
|
54 | + } |
|
55 | 55 | } |