OSDN Git Service

初回コミット(v2.6.17.1)
[magic3/magic3.git] / widgets / s / banner / include / container / s_bannerWidgetContainer.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-2013 Magic3 Project.
12  * @license    http://www.gnu.org/copyleft/gpl.html  GPL License
13  * @version    SVN: $Id: s_bannerWidgetContainer.php 5867 2013-03-28 04:04:02Z fishbone $
14  * @link       http://www.magic3.org
15  */
16 require_once($gEnvManager->getWidgetContainerPath('banner3') . '/banner3WidgetContainer.php');
17
18 class s_bannerWidgetContainer extends banner3WidgetContainer
19 {
20         /**
21          * コンストラクタ
22          */
23         function __construct()
24         {
25                 default_bannerCommonDef::$_deviceType           = 2;                                            // デバイスタイプ(スマートフォン)
26                 default_bannerCommonDef::$_deviceTypeName       = 'スマートフォン';      // デバイスタイプ名
27                 
28                 // 親クラスを呼び出す
29                 parent::__construct();
30         }
31 }
32 ?>