67 lines
1.5 KiB
PHP
67 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* StorageSpaceSkin.php
|
|
*
|
|
* PHP version 7
|
|
*
|
|
* @category Skins
|
|
* @package App\Skins\Widget
|
|
* @author XE Developers <developers@xpressengine.com>
|
|
* @copyright 2020 Copyright XEHub Corp. <https://www.xehub.io>
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL
|
|
* @link https://xpressengine.io
|
|
*/
|
|
namespace App\Skins\Widget;
|
|
|
|
use Xpressengine\Skin\GenericSkin;
|
|
|
|
/**
|
|
* Class StorageSpaceSkin
|
|
*
|
|
* @category Skins
|
|
* @package App\Skins\Widget
|
|
* @author XE Developers <developers@xpressengine.com>
|
|
* @copyright 2020 Copyright XEHub Corp. <https://www.xehub.io>
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL
|
|
* @link https://xpressengine.io
|
|
*/
|
|
class StorageSpaceSkin extends GenericSkin
|
|
{
|
|
/**
|
|
* The component id
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $id = 'widget/xpressengine@storageSpace/skin/xpressengine@default';
|
|
|
|
/**
|
|
* The information for component
|
|
*
|
|
* @var array
|
|
*/
|
|
protected static $componentInfo = [
|
|
'name' => '기본 스토리지 위젯 스킨',
|
|
'description' => 'Xpressengine의 기본 스토리지 위젯 스킨입니다'
|
|
];
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected static $path = 'widget.widgets.storageSpace';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected static $viewDir = '';
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected static $info = [
|
|
'support' => [
|
|
'mobile' => true,
|
|
'desktop' => true
|
|
]
|
|
];
|
|
}
|