dbFields = array( 'dateFormat' => 'relative', 'showTags' => true ); } public function form() { global $L; $html .= '
'; $html .= ''; $html .= ''; $html .= '
' . $L->get('Change the date format for the main page.') . '
'; $html .= '
'; $html .= '
'; $html .= ''; $html .= ''; $html .= '
' . $L->get('Show tags in the main page for each article.') . '
'; $html .= '
'; return $html; } public function dateFormat() { return $this->getValue('dateFormat'); } public function showTags() { return $this->getValue('showTags'); } }