OSDN Git Service

DB更新スクリプト更新。
[magic3/magic3.git] / widgets / m / quizk / include / container / m_quizkBaseWidgetContainer.php
1 <?php
2 /**
3  * コンテナクラス
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-2009 Magic3 Project.
12  * @license    http://www.gnu.org/copyleft/gpl.html  GPL License
13  * @version    SVN: $Id: m_quizkBaseWidgetContainer.php 1930 2009-05-27 16:44:57Z fishbone $
14  * @link       http://www.magic3.org
15  */
16 require_once($gEnvManager->getContainerPath() . '/baseMobileWidgetContainer.php');
17
18 class m_quizkBaseWidgetContainer extends BaseMobileWidgetContainer
19 {
20         protected $mobileId;            // 携帯ID
21         const ERR_MESSAGE_FORMAT = '<span style="color:#ff0000"><font color="#ff0000">%s</font></span>';        //      エラーメッセージのフォーマット
22         
23         /**
24          * コンストラクタ
25          */
26         function __construct()
27         {
28                 // 親クラスを呼び出す
29                 parent::__construct();
30                 
31                 $this->mobileId = $this->gEnv->getMobileId();// 端末IDを取得
32         }
33         /**
34          * テンプレートにデータ埋め込む
35          *
36          * _setTemplate()で指定したテンプレートファイルにデータを埋め込む。
37          *
38          * @param RequestManager $request               HTTPリクエスト処理クラス
39          * @param object         $param                 任意使用パラメータ。_setTemplate()と共有。
40          * @return                                                              なし
41          */
42         function _postAssign($request, &$param)
43         {
44         }
45 }
46 ?>