mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 15:21:40 +09:00
31 lines
723 B
PHP
31 lines
723 B
PHP
<?php
|
|
/**
|
|
* @class layoutController
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief layout 모듈의 Controller class
|
|
**/
|
|
|
|
class layoutController extends layout {
|
|
|
|
/**
|
|
* @brief 초기화
|
|
**/
|
|
function init() {
|
|
}
|
|
|
|
/**
|
|
* @brief 레이아웃 신규 생성
|
|
**/
|
|
function procInsertLayout() {
|
|
$oDB = &DB::getInstance();
|
|
|
|
$args->layout_srl = $oDB->getNextSequence();
|
|
$args->layout = Context::get('layout');
|
|
$args->title = Context::get('title');
|
|
|
|
$oDB->executeQuery("layout.insertLayout", $args);
|
|
|
|
$this->add('layout_srl', $args->layout_srl);
|
|
}
|
|
}
|
|
?>
|