방명록 기본 스킨 정리

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3014 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-20 02:59:38 +00:00
parent 51fb1e0d43
commit d0bc8a4b9f
29 changed files with 505 additions and 327 deletions

View file

@ -60,9 +60,13 @@
if(!$option->enable_component) $enable_component = false;
else $enable_component = true;
// html 모드 조절
if($option->disable_html) $html_mode = false;
else $html_mode = true;
// 크기 조절 옵션 설정
if(!$option->resizable) $resizable = 'false';
else $resizable = 'true';
if(!$option->resizable) $resizable = false;
else $resizable = true;
// 높이 설정
if(!$option->height) $editor_height = 400;
@ -145,6 +149,11 @@
Context::set('enable_component', $enable_component);
Context::set('enable_default_component', $enable_default_component);
/**
* html_mode 가능한지 변수 설정
**/
Context::set('html_mode', $html_mode);
/**
* resizable 가능한지 변수 설정
**/