Signed-off-by: WaitSpring <me@waitspring.com>
这个提交包含在:
WaitSpring 2023-10-21 19:39:43 +08:00
父节点 06f2abb0c4
当前提交 e4c279919c
找不到此签名对应的密钥
共有 3 个文件被更改,包括 1300 次插入1300 次删除

文件差异内容过多而无法显示 加载差异

查看文件

@ -17,38 +17,38 @@ use ResourceLoaderSkinModule;
*/
class GongbiVariablesModule extends ResourceLoaderSkinModule
{
/**
* Add our LESS variables
*
* @param ResourceLoaderContext $context
* @return array LESS variables
*/
protected function getLessVars(ResourceLoaderContext $context)
{
$vars = parent::getLessVars($context);
$config = $this->getConfig();
/**
* Add our LESS variables
*
* @param ResourceLoaderContext $context
* @return array LESS variables
*/
protected function getLessVars(ResourceLoaderContext $context)
{
$vars = parent::getLessVars($context);
$config = $this->getConfig();
return array_merge(
$vars,
[
// 'logo-image' => ''
// 'wordmark-image' => ''
// +width cutoffs ...
]
);
}
return array_merge(
$vars,
[
// 'logo-image' => ''
// 'wordmark-image' => ''
// +width cutoffs ...
]
);
}
/**
* Register the config var with the caching stuff so it properly updates the cache
*
* @param ResourceLoaderContext $context
* @return array
*/
public function getDefinitionSummary(ResourceLoaderContext $context)
{
$summary = parent::getDefinitionSummary($context);
$summary[] = [];
/**
* Register the config var with the caching stuff so it properly updates the cache
*
* @param ResourceLoaderContext $context
* @return array
*/
public function getDefinitionSummary(ResourceLoaderContext $context)
{
$summary = parent::getDefinitionSummary($context);
$summary[] = [];
return $summary;
}
return $summary;
}
}

查看文件

@ -18,12 +18,12 @@ use SkinTemplate;
*/
class SkinGongbi extends SkinTemplate
{
/**
* @inheritDoc
*/
public function __construct(
array $options = []
) {
parent::__construct($options);
}
/**
* @inheritDoc
*/
public function __construct(
array $options = []
) {
parent::__construct($options);
}
}