|
@@ 244-251 (lines=8) @@
|
| 241 |
|
* |
| 242 |
|
* @return String |
| 243 |
|
*/ |
| 244 |
|
protected function getLogo( \DOMElement $domElement = null ) { |
| 245 |
|
|
| 246 |
|
$logo = new Logo( $this->getSkinTemplate(), $domElement, $this->getIndent() ); |
| 247 |
|
$logo->addClasses( 'navbar-brand' ); |
| 248 |
|
|
| 249 |
|
// return \Html::rawElement( 'li', array(), $logo->getHtml() ); |
| 250 |
|
return $logo->getHtml(); |
| 251 |
|
} |
| 252 |
|
|
| 253 |
|
/** |
| 254 |
|
* Creates a list of navigational links usually found in the sidebar |
|
@@ 319-325 (lines=7) @@
|
| 316 |
|
* |
| 317 |
|
* @return string |
| 318 |
|
*/ |
| 319 |
|
protected function getSearchBar( \DOMElement $domElement = null ) { |
| 320 |
|
|
| 321 |
|
$search = new SearchBar( $this->getSkinTemplate(), $domElement, $this->getIndent() ); |
| 322 |
|
$search->addClasses( 'navbar-form' ); |
| 323 |
|
|
| 324 |
|
return $search->getHtml(); |
| 325 |
|
} |
| 326 |
|
|
| 327 |
|
/** |
| 328 |
|
* Creates a user's personal tools and the newtalk notifier |