dbFields = array(
'googleFonts' => false,
'showPostInformation' => false,
'dateFormat' => 'relative'
);
}
public function form()
{
global $L;
$html = '';
$html .= '
';
$html .= '';
$html .= '';
$html .= '
' . $L->get('Enable or disable Google fonts.') . '
';
$html .= '
';
$html .= '
';
$html .= '';
$html .= '';
$html .= '
';
$html .= '
';
$html .= '';
$html .= '';
$html .= '
' . $L->get('Change the date format for the main page.') . '
';
$html .= '
';
return $html;
}
public function showPostInformation()
{
return $this->getValue('showPostInformation');
}
public function googleFonts()
{
return $this->getValue('googleFonts');
}
public function dateFormat()
{
return $this->getValue('dateFormat');
}
}