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

This commit is contained in:
zero 2007-02-15 14:17:13 +00:00
parent cf88cc4cb2
commit dec618986e
3 changed files with 70 additions and 9 deletions

View file

@ -1,12 +1,12 @@
<?php
/**
* @class LayoutHandler
* @class Layout
* @author zero (zero@nzeo.com)
* @brief 레이아웃 관리
* @todo 미구현
**/
class LayoutHandler extends Handler {
class Layout extends Object {
var $layout_name; ///< 레이아웃의 이름
var $layout_info; ///< 레이아웃의 정보
@ -18,7 +18,7 @@
if($oModule->getActType() != 'disp') return;
if(!$oModuleInfo->isLayoutExists()) return;
$oLayout = new LayoutHandler();
$oLayout = new Layout();
$oLayout->proc($oModule, $oModuleInfo);
}