|
11 | 11 | use Ajax\semantic\traits\SemanticWidgetsTrait; |
12 | 12 |
|
13 | 13 | class Semantic extends BaseGui { |
14 | | - use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait, |
15 | | - SemanticHtmlModulesTrait,SemanticHtmlViewsTrait,SemanticWidgetsTrait; |
| 14 | + use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait, |
| 15 | + SemanticHtmlModulesTrait,SemanticHtmlViewsTrait,SemanticWidgetsTrait; |
16 | 16 |
|
17 | | - private $language; |
| 17 | + private $language; |
18 | 18 |
|
19 | | - private $style; |
| 19 | + private $inverted; |
20 | 20 |
|
21 | | - public function __construct($autoCompile=true) { |
22 | | - parent::__construct($autoCompile); |
23 | | - } |
| 21 | + public function __construct($autoCompile=true) { |
| 22 | + parent::__construct($autoCompile); |
| 23 | + } |
24 | 24 |
|
25 | 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 | | - } |
| 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 | 36 |
|
37 | | - public function compile($internal = false) { |
38 | | - if($this->style!=null){ |
39 | | - parent::compile($internal); |
| 37 | + public function compileHtml(JsUtils $js = NULL, &$view = NULL) { |
| 38 | + if($this->inverted==null){ |
| 39 | + parent::compileHtml($js,$view); |
40 | 40 | }else { |
41 | | - if ($internal === false && $this->autoCompile === true) |
42 | | - throw new \Exception("Impossible to compile if autoCompile is set to 'true'"); |
43 | | - $style=$this->style; |
44 | | - foreach ($this->components as $component) { |
45 | | - $component->addToProperty("class", $style); |
46 | | - $component->compile(); |
| 41 | + foreach ($this->htmlComponents as $htmlComponent) { |
| 42 | + $htmlComponent->setInverted(true); |
| 43 | + $htmlComponent->compile($js, $view); |
47 | 44 | } |
48 | 45 | } |
49 | 46 | } |
50 | 47 |
|
51 | | - public function setStyle($style='inverted'){ |
52 | | - $this->style=$style; |
| 48 | + public function setInverted($inverted='inverted'){ |
| 49 | + $this->inverted=$inverted; |
53 | 50 | } |
54 | 51 |
|
55 | | - public function getStyle(){ |
56 | | - return $this->style; |
| 52 | + public function getInverted(){ |
| 53 | + return $this->inverted; |
57 | 54 | } |
58 | 55 | } |
0 commit comments