2019-12-05 21:25:58 +01:00
|
|
|
<?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()
|
|
|
|
{
|
2019-12-05 21:25:58 +01:00
|
|
|
return $this->getValue('fonts');
|
|
|
|
}
|
|
|
|
|
2020-04-22 21:55:53 +02:00
|
|
|
public function getCSS()
|
|
|
|
{
|
2019-12-05 21:25:58 +01:00
|
|
|
return $this->getValue('css');
|
|
|
|
}
|
|
|
|
|
2020-04-22 21:55:53 +02:00
|
|
|
public function getJS()
|
|
|
|
{
|
2019-12-05 21:25:58 +01:00
|
|
|
return $this->getValue('js');
|
|
|
|
}
|
|
|
|
|
2020-04-22 21:55:53 +02:00
|
|
|
public function getFavicon()
|
|
|
|
{
|
2019-12-05 21:25:58 +01:00
|
|
|
return $this->getValue('favicon');
|
|
|
|
}
|
|
|
|
|
2020-04-22 21:55:53 +02:00
|
|
|
public function getTemplates()
|
|
|
|
{
|
2019-12-05 21:25:58 +01:00
|
|
|
return $this->getValue('templates');
|
|
|
|
}
|
|
|
|
}
|