dbFields = array(
'googleFonts' => true,
'darkMode' => true,
'dateFormat' => 'relative',
'showTags' => true
);
}
public function form()
{
global $L;
$html = '
';
$html .= '';
$html .= '';
$html .= '
' . $L->get('Enable or disable dark mode.') . '
';
$html .= '
';
$html .= '
';
$html .= '';
$html .= '';
$html .= '
' . $L->get('Enable or disable Google fonts.') . '
';
$html .= '
';
$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 darkMode()
{
return $this->getValue('darkMode');
}
public function googleFonts()
{
return $this->getValue('googleFonts');
}
public function dateFormat()
{
return $this->getValue('dateFormat');
}
public function showTags()
{
return $this->getValue('showTags');
}
}