dbFields = array( 'label' => 'About' ); } public function form() { global $L; $html = '
'; $html .= ''; $html .= ''; $html .= '' . $L->get('This title is almost always used in the sidebar of the site') . ''; $html .= '
'; return $html; } public function siteSidebar() { $html = '
'; $html .= '

' . $this->getValue('label') . '

'; $html .= '
'; $html .= Theme::getHomepagePresentation(); $html .= '
'; $html .= '
'; return $html; } }