admin 클래스 참조

base class of admin module 더 자세히 ...

admin에 대한 상속 다이어그램 :
Inheritance graph
admin에 대한 협력 다이어그램:
Collaboration graph

모든 멤버 목록

Public 멤버 함수

 moduleInstall ()
 install admin module
 checkUpdate ()
 if update is necessary it returns true
 moduleUpdate ()
 update module
 recompileCache ()
 regenerate cache file

상세한 설명

base class of admin module

작성자:
zero (zero@nzeo.com)

admin.class.php 파일의 8 번째 라인에서 정의되었습니다.


멤버 함수 문서화

admin::checkUpdate (  ) 

if update is necessary it returns true

admin.class.php 파일의 21 번째 라인에서 정의되었습니다.

00021                                {
00022             return false;
00023         }

admin::moduleInstall (  ) 

install admin module

반환값:
new Object

admin.class.php 파일의 14 번째 라인에서 정의되었습니다.

다음을 참조함 : Object::Object().

00014                                  {
00015             return new Object();
00016         }

이 함수 내부에서 호출하는 함수들에 대한 그래프입니다.:

admin::moduleUpdate (  ) 

update module

반환값:
new Object

admin.class.php 파일의 29 번째 라인에서 정의되었습니다.

다음을 참조함 : Object::Object().

00029                                 {
00030             return new Object();
00031         }

이 함수 내부에서 호출하는 함수들에 대한 그래프입니다.:

admin::recompileCache (  ) 

regenerate cache file

반환값:
none

admin.class.php 파일의 37 번째 라인에서 정의되었습니다.

다음을 참조함 : FileHandler::removeFile(), FileHandler::removeFilesInDir().

00037                                   {
00038 
00039             // remove compiled templates
00040             FileHandler::removeFilesInDir("./files/cache/template_compiled");
00041 
00042             // remove optimized files 
00043             FileHandler::removeFilesInDir("./files/cache/optimized");
00044 
00045             // remove js_filter_compiled files 
00046             FileHandler::removeFilesInDir("./files/cache/js_filter_compiled");
00047 
00048             // remove cached queries 
00049             FileHandler::removeFilesInDir("./files/cache/queries");
00050 
00051             // remove ./files/cache/news* files 
00052             $directory = dir(_XE_PATH_."files/cache/");
00053             while($entry = $directory->read()) {
00054                 if(substr($entry,0,11)=='newest_news') FileHandler::removeFile("./files/cache/".$entry);
00055             }
00056             $directory->close();
00057         }

이 함수 내부에서 호출하는 함수들에 대한 그래프입니다.:


이 클래스에 대한 문서화 페이지는 다음의 파일로부터 생성되었습니다.:

생성시간 : Wed Oct 28 22:59:43 2009, 프로젝트명 : XpressEngine, 생성자 :   doxygen 1.6.1