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

This commit is contained in:
zero 2007-03-15 00:59:04 +00:00
parent 2acf1afd1a
commit 1adfe63fd7
5 changed files with 27 additions and 439 deletions

View file

@ -1,16 +1,29 @@
<?php
/**
* @class comment
* @class pagemaker
* @author zero (zero@nzeo.com)
* @brief comment 모듈의 high class
* @brief pagemaker 모듈의 high class
**/
class comment extends ModuleObject {
class pagemaker extends ModuleObject {
/**
* @brief 설치시 추가 작업이 필요할시 구현
**/
function moduleInstall() {
// plugin 에서 사용할 cache디렉토리 생성
$directory_list = array(
'./files',
'./files/cache',
'./files/cache/page',
);
foreach($directory_list as $dir) {
if(is_dir($dir)) continue;
@mkdir($dir, 0707);
@chmod($dir, 0707);
}
return new Object();
}