* @copyright 2020 Copyright XEHub Corp. * @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 ContentInfoSkin * * @category Skins * @package App\Skins\Widget * @author XE Developers * @copyright 2020 Copyright XEHub Corp. * @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL * @link https://xpressengine.io */ class ContentInfoSkin extends GenericSkin { /** * The component id * * @var string */ protected static $id = 'widget/xpressengine@contentInfo/skin/xpressengine@default'; /** * The information for component * * @var array */ protected static $componentInfo = [ 'name' => '기본 콘텐츠 현황 위젯 스킨', 'description' => 'Xpressengine의 기본 콘텐츠 현황 위젯 스킨입니다' ]; /** * @var string */ protected static $path = 'widget.widgets.contentInfo'; /** * @var string */ protected static $viewDir = ''; /** * @var array */ protected static $info = [ 'support' => [ 'mobile' => true, 'desktop' => true ] ]; }