8
0
Fork 0
daux.io/libs/Format/HTML/Theme.php

32 Zeilen
538 B
PHP

<?php namespace Todaymade\Daux\Format\HTML;
use Todaymade\Daux\BaseConfig;
class Theme extends BaseConfig
{
2020-04-22 21:55:53 +02:00
public function getFonts()
{
return $this->getValue('fonts');
}
2020-04-22 21:55:53 +02:00
public function getCSS()
{
return $this->getValue('css');
}
2020-04-22 21:55:53 +02:00
public function getJS()
{
return $this->getValue('js');
}
2020-04-22 21:55:53 +02:00
public function getFavicon()
{
return $this->getValue('favicon');
}
2020-04-22 21:55:53 +02:00
public function getTemplates()
{
return $this->getValue('templates');
}
}