mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
https://xetown.com/questions/1728094 - 해시(#) 문자와 공백도 태그 구분자로 사용할 수 있도록 지원 - 해시는 기본 지원하며, 공백은 기본 OFF - tag 모듈 설정에서 커스터마이징 가능 - document 모듈 이외의 자료에서 태그 기능 구현한 경우 적용되지 않을 수 있음
13 lines
291 B
PHP
13 lines
291 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');
|
|
}
|
|
}
|