OSDN Git Service

初回コミット(v2.6.17.1)
[magic3/magic3.git] / include / container / indexFrameContainer.php
1 <?php
2 /**
3  * index.php用コンテナクラス
4  *
5  * PHP versions 5
6  *
7  * LICENSE: This source file is licensed under the terms of the GNU General Public License.
8  *
9  * @package    Magic3 Framework
10  * @author     平田直毅(Naoki Hirata) <naoki@aplo.co.jp>
11  * @copyright  Copyright 2006-2008 Magic3 Project.
12  * @license    http://www.gnu.org/copyleft/gpl.html  GPL License
13  * @version    SVN: $Id: indexFrameContainer.php 2576 2009-11-20 06:27:02Z fishbone $
14  * @link       http://www.magic3.org
15  */
16 require_once($gEnvManager->getContainerPath() . '/baseFrameContainer.php');
17
18 class indexFrameContainer extends BaseFrameContainer
19 {
20         /**
21          * コンストラクタ
22          */
23         function __construct()
24         {
25                 // 親クラスを呼び出す
26                 parent::__construct();
27         }
28         /**
29          * ビュー作成の前処理
30          *
31          * @param RequestManager $request               HTTPリクエスト処理クラス
32          */
33         function _preBuffer($request)
34         {
35         }
36         /**
37          * ビュー作成の後処理
38          *
39          * @param RequestManager $request               HTTPリクエスト処理クラス
40          */
41         function _postBuffer($request)
42         {
43         }
44         /**
45          * テンプレートファイルを設定
46          *
47          * @param RequestManager $request               HTTPリクエスト処理クラス
48          * @return                                                              テンプレートを固定にしたい場合はテンプレート名を返す。
49          *                                                                              テンプレートが任意の場合(変更可能な場合)は空文字列を返す。
50          */
51         function _setTemplate($request)
52         {       
53                 return '';
54         }
55 }
56 ?>