mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-20 11:49:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@448 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2acf1afd1a
commit
1adfe63fd7
5 changed files with 27 additions and 439 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue