mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
13 lines
289 B
PHP
13 lines
289 B
PHP
<?php
|
|
|
|
class TagAdminView extends Tag
|
|
{
|
|
public function dispTagAdminConfig()
|
|
{
|
|
$config = ModuleModel::getModuleConfig($this->module) ?: new stdClass;
|
|
Context::set('tag_config', $config);
|
|
|
|
$this->setTemplatePath($this->module_path . 'tpl');
|
|
$this->setTemplateFile('config');
|
|
}
|
|
}
|