git-svn-id: http://xe-core.googlecode.com/svn/trunk@736 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-28 03:06:44 +00:00
parent fa23900142
commit 278178735f
7 changed files with 5 additions and 35 deletions

View file

@ -49,12 +49,8 @@
/**
* @brief 레이아웃의 경로를 구함
* 기본으로는 ./layouts에 있지만 웹관리기능으로 다운로드시 ./files/layouts에 존재함
**/
function getLayoutPath($layout_name) {
$class_path = sprintf('./files/layouts/%s/', $layout_name);
if(is_dir($class_path)) return $class_path;
$class_path = sprintf('./layouts/%s/', $layout_name);
if(is_dir($class_path)) return $class_path;
@ -67,9 +63,7 @@
**/
function getDownloadedLayoutList() {
// 다운받은 레이아웃과 설치된 레이아웃의 목록을 구함
$downloaded_list = FileHandler::readDir('./files/layouts');
$installed_list = FileHandler::readDir('./layouts');
$searched_list = array_merge($downloaded_list, $installed_list);
$searched_list = FileHandler::readDir('./layouts');
$searched_count = count($searched_list);
if(!$searched_count) return;