33namespace Ajax ;
44
55use Ajax \common \BaseGui ;
6- use Ajax \semantic \html \collections \menus \HtmlMenu ;
76use Ajax \semantic \html \modules \HtmlDropdown ;
8- use Ajax \semantic \html \collections \HtmlMessage ;
97use Ajax \semantic \html \modules \HtmlPopup ;
108use Ajax \common \html \BaseHtml ;
11- use Ajax \semantic \html \collections \HtmlGrid ;
129use Ajax \semantic \html \collections \menus \HtmlIconMenu ;
1310use Ajax \semantic \html \collections \menus \HtmlLabeledIconMenu ;
1411use Ajax \semantic \html \collections \HtmlBreadcrumb ;
1512use Ajax \semantic \html \modules \HtmlAccordion ;
1613use Ajax \semantic \components \Accordion ;
1714use Ajax \semantic \html \collections \menus \HtmlAccordionMenu ;
18- use Ajax \semantic \html \collections \form \HtmlForm ;
1915use Ajax \semantic \traits \SemanticComponentsTrait ;
2016use Ajax \semantic \traits \SemanticHtmlElementsTrait ;
2117use Ajax \semantic \html \modules \HtmlSticky ;
@@ -31,15 +27,6 @@ public function __construct($autoCompile=true) {
3127 parent ::__construct ($ autoCompile =true );
3228 }
3329
34- /**
35- *
36- * @param string $identifier
37- * @param array $items
38- * @return Ajax\semantic\html\collections\HtmlMenu
39- */
40- public function htmlMenu ($ identifier , $ items =array ()) {
41- return $ this ->addHtmlComponent (new HtmlMenu ($ identifier , $ items ));
42- }
4330
4431 /**
4532 * Adds an icon menu
@@ -69,16 +56,6 @@ public function htmlDropdown($identifier, $value="", $items=array()) {
6956 return $ this ->addHtmlComponent (new HtmlDropdown ($ identifier , $ value , $ items ));
7057 }
7158
72- /**
73- * Adds a new message
74- * @param string $identifier
75- * @param string $content
76- * @return HtmlMessage
77- */
78- public function htmlMessage ($ identifier , $ content ="" ) {
79- return $ this ->addHtmlComponent (new HtmlMessage ($ identifier , $ content ));
80- }
81-
8259 /**
8360 *
8461 * @param string $identifier
@@ -89,19 +66,6 @@ public function htmlPopup(BaseHtml $container, $identifier, $content) {
8966 return $ this ->addHtmlComponent (new HtmlPopup ($ container , $ identifier , $ content ));
9067 }
9168
92- /**
93- *
94- * @param string $identifier
95- * @param int $numRows
96- * @param int $numCols
97- * @param boolean $createCols
98- * @param boolean $implicitRows
99- * @return HtmlGrid
100- */
101- public function htmlGrid ($ identifier , $ numRows =1 , $ numCols =NULL , $ createCols =true , $ implicitRows =false ) {
102- return $ this ->addHtmlComponent (new HtmlGrid ($ identifier , $ numRows , $ numCols , $ createCols , $ implicitRows ));
103- }
104-
10569 /**
10670 * Returns a new Semantic Html Breadcrumb
10771 * @param string $identifier
@@ -132,15 +96,6 @@ public function htmlAccordionMenu($identifier, $items=array()) {
13296 return $ this ->addHtmlComponent (new HtmlAccordionMenu ($ identifier , $ items ));
13397 }
13498
135- /**
136- * Returns a new Semantic Form
137- * @param string $identifier
138- * @param array $elements
139- * @return HtmlForm
140- */
141- public function htmlForm ($ identifier , $ elements =array ()) {
142- return $ this ->addHtmlComponent (new HtmlForm ($ identifier , $ elements ));
143- }
14499
145100 /**
146101 * Returns a new Semantic Sticky
0 commit comments