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