1 | <?php |
||
15 | class Semantic extends BaseGui { |
||
16 | |||
17 | public function __construct($autoCompile=true) { |
||
20 | |||
21 | /** |
||
22 | * Return a new Semantic Html Button |
||
23 | * @param string $identifier |
||
24 | * @param string $value |
||
25 | * @param string $cssStyle |
||
26 | * @param string $onClick |
||
27 | * @return HtmlButton |
||
28 | */ |
||
29 | public function htmlButton($identifier, $value="", $cssStyle=null, $onClick=null) { |
||
32 | |||
33 | /** |
||
34 | * @param string $identifier |
||
35 | * @param string $icon |
||
36 | */ |
||
37 | public function htmlIcon($identifier,$icon){ |
||
40 | |||
41 | /** |
||
42 | * @param string $identifier |
||
43 | * @param string $size |
||
44 | * @param array $icons |
||
45 | */ |
||
46 | public function htmlIconGroups($identifier,$size="",$icons=array()){ |
||
59 | |||
60 | /** |
||
61 | * @param string $identifier |
||
62 | * @param array $elements |
||
63 | * @param boolean $asIcons |
||
64 | */ |
||
65 | public function htmlButtonGroups($identifier,$elements=array(),$asIcons=false){ |
||
68 | |||
69 | /** |
||
70 | * Creates an html container |
||
71 | * @param string $identifier |
||
72 | * @param string $content |
||
73 | */ |
||
74 | public function htmlContainer($identifier,$content=""){ |
||
77 | |||
78 | /** |
||
79 | * @param string $identifier |
||
80 | * @param string $content |
||
81 | */ |
||
82 | public function htmlDivider($identifier,$content="",$tagName="div"){ |
||
85 | |||
86 | public function htmlLabel($identifier,$content="",$tagName="div"){ |
||
89 | } |