mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
25 lines
355 B
PHP
25 lines
355 B
PHP
|
<?php namespace Backend\Skins;
|
||
|
|
||
|
use Backend\Classes\Skin;
|
||
|
|
||
|
/**
|
||
|
* Standard skin information file
|
||
|
*
|
||
|
* @package october\backend
|
||
|
* @author Alexey Bobkov, Samuel Georges
|
||
|
*/
|
||
|
|
||
|
class Standard extends Skin
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* {@inheritDoc}
|
||
|
*/
|
||
|
public function skinDetails()
|
||
|
{
|
||
|
return [
|
||
|
'name' => 'Default Skin'
|
||
|
];
|
||
|
}
|
||
|
|
||
|
}
|