| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 4 | * |
|---|
| 5 | * http://www.lockon.co.jp/ |
|---|
| 6 | */ |
|---|
| 7 | |
|---|
| 8 | $SC_VIEW_PHP_DIR = realpath(dirname(__FILE__)); |
|---|
| 9 | require_once($SC_VIEW_PHP_DIR . "/../module/Smarty/libs/Smarty.class.php"); |
|---|
| 10 | require_once($SC_VIEW_PHP_DIR . "/../include/php_ini.inc"); |
|---|
| 11 | //require_once(CLASS_PATH . "util_extends/SC_Utils_Ex.php"); |
|---|
| 12 | |
|---|
| 13 | class SC_View { |
|---|
| 14 | |
|---|
| 15 | var $_smarty; |
|---|
| 16 | var $objSiteInfo; // サイト情報 |
|---|
| 17 | |
|---|
| 18 | // コンストラクタ |
|---|
| 19 | function SC_View($siteinfo = true) { |
|---|
| 20 | global $SC_VIEW_PHP_DIR; |
|---|
| 21 | |
|---|
| 22 | $this->_smarty = new Smarty; |
|---|
| 23 | $this->_smarty->left_delimiter = '<!--{'; |
|---|
| 24 | $this->_smarty->right_delimiter = '}-->'; |
|---|
| 25 | $this->_smarty->register_modifier("sfDispDBDate", array("SC_Utils_Ex", "sfDispDBDate")); |
|---|
| 26 | $this->_smarty->register_modifier("sfConvSendDateToDisp", array("SC_Utils_Ex", "sfConvSendDateToDisp")); |
|---|
| 27 | $this->_smarty->register_modifier("sfConvSendWdayToDisp", array("SC_Utils_Ex", "sfConvSendWdayToDisp")); |
|---|
| 28 | $this->_smarty->register_modifier("sfGetVal", array("SC_Utils_Ex", "sfGetVal")); |
|---|
| 29 | $this->_smarty->register_function("sfSetErrorStyle", array("SC_Utils_Ex", "sfSetErrorStyle")); |
|---|
| 30 | $this->_smarty->register_function("sfGetErrorColor", array("SC_Utils_Ex", "sfGetErrorColor")); |
|---|
| 31 | $this->_smarty->register_function("sfTrim", array("SC_Utils_Ex", "sfTrim")); |
|---|
| 32 | $this->_smarty->register_function("sfPreTax", array("SC_Utils_Ex", "sfPreTax")); |
|---|
| 33 | $this->_smarty->register_function("sfPrePoint", array("SC_Utils_Ex", "sfPrePoint")); |
|---|
| 34 | $this->_smarty->register_function("sfGetChecked",array("SC_Utils_Ex", "sfGetChecked")); |
|---|
| 35 | $this->_smarty->register_function("sfTrimURL", array("SC_Utils_Ex", "sfTrimURL")); |
|---|
| 36 | $this->_smarty->register_function("sfMultiply", array("SC_Utils_Ex", "sfMultiply")); |
|---|
| 37 | $this->_smarty->register_function("sfPutBR", array("SC_Utils_Ex", "sfPutBR")); |
|---|
| 38 | $this->_smarty->register_function("sfRmDupSlash", array("SC_Utils_Ex", "sfRmDupSlash")); |
|---|
| 39 | $this->_smarty->register_function("sfCutString", array("SC_Utils_Ex", "sfCutString")); |
|---|
| 40 | $this->_smarty->plugins_dir=array("plugins", $SC_VIEW_PHP_DIR . "/../smarty_extends"); |
|---|
| 41 | $this->_smarty->register_function("sf_mb_convert_encoding", array("SC_Utils_Ex", "sf_mb_convert_encoding")); |
|---|
| 42 | $this->_smarty->register_function("sf_mktime", array("SC_Utils_Ex", "sf_mktime")); |
|---|
| 43 | $this->_smarty->register_function("sf_date", array("SC_Utils_Ex", "sf_date")); |
|---|
| 44 | $this->_smarty->register_function("str_replace", array("SC_Utils_Ex", "str_replace")); |
|---|
| 45 | $this->_smarty->register_function("sfPrintEbisTag", array("SC_Utils_Ex", "sfPrintEbisTag")); |
|---|
| 46 | $this->_smarty->register_function("sfPrintAffTag", array("SC_Utils_Ex", "sfPrintAffTag")); |
|---|
| 47 | $this->_smarty->register_function("sfIsHTTPS", array("SC_Utils_Ex", "sfIsHTTPS")); |
|---|
| 48 | $this->_smarty->default_modifiers = array('script_escape'); |
|---|
| 49 | |
|---|
| 50 | if(ADMIN_MODE == '1') { |
|---|
| 51 | $this->time_start = time(); |
|---|
| 52 | } |
|---|
| 53 | |
|---|
| 54 | // サイト情報を取得する |
|---|
| 55 | if($siteinfo) { |
|---|
| 56 | if(!defined('LOAD_SITEINFO')) { |
|---|
| 57 | $this->objSiteInfo = new SC_SiteInfo(); |
|---|
| 58 | $arrInfo['arrSiteInfo'] = $this->objSiteInfo->data; |
|---|
| 59 | |
|---|
| 60 | // 都道府県名を変換 |
|---|
| 61 | global $arrPref; |
|---|
| 62 | $arrInfo['arrSiteInfo']['pref'] = $arrPref[$arrInfo['arrSiteInfo']['pref']]; |
|---|
| 63 | |
|---|
| 64 | // サイト情報を割り当てる |
|---|
| 65 | foreach ($arrInfo as $key => $value){ |
|---|
| 66 | $this->_smarty->assign($key, $value); |
|---|
| 67 | } |
|---|
| 68 | |
|---|
| 69 | define('LOAD_SITEINFO', 1); |
|---|
| 70 | } |
|---|
| 71 | } |
|---|
| 72 | } |
|---|
| 73 | |
|---|
| 74 | // テンプレートに値を割り当てる |
|---|
| 75 | function assign($val1, $val2) { |
|---|
| 76 | $this->_smarty->assign($val1, $val2); |
|---|
| 77 | } |
|---|
| 78 | |
|---|
| 79 | // テンプレートの処理結果を取得 |
|---|
| 80 | function fetch($template) { |
|---|
| 81 | return $this->_smarty->fetch($template); |
|---|
| 82 | } |
|---|
| 83 | |
|---|
| 84 | // テンプレートの処理結果を表示 |
|---|
| 85 | function display($template, $no_error = false) { |
|---|
| 86 | if(!$no_error) { |
|---|
| 87 | global $GLOBAL_ERR; |
|---|
| 88 | if(!defined('OUTPUT_ERR')) { |
|---|
| 89 | print($GLOBAL_ERR); |
|---|
| 90 | define('OUTPUT_ERR','ON'); |
|---|
| 91 | } |
|---|
| 92 | } |
|---|
| 93 | |
|---|
| 94 | $this->_smarty->display($template); |
|---|
| 95 | if(ADMIN_MODE == '1') { |
|---|
| 96 | $time_end = time(); |
|---|
| 97 | $time = $time_end - $this->time_start; |
|---|
| 98 | print("処理時間:" . $time . "秒"); |
|---|
| 99 | } |
|---|
| 100 | } |
|---|
| 101 | |
|---|
| 102 | // オブジェクト内の変数をすべて割り当てる。 |
|---|
| 103 | function assignobj($obj) { |
|---|
| 104 | $data = get_object_vars($obj); |
|---|
| 105 | |
|---|
| 106 | foreach ($data as $key => $value){ |
|---|
| 107 | $this->_smarty->assign($key, $value); |
|---|
| 108 | } |
|---|
| 109 | } |
|---|
| 110 | |
|---|
| 111 | // 連想配列内の変数をすべて割り当てる。 |
|---|
| 112 | function assignarray($array) { |
|---|
| 113 | foreach ($array as $key => $val) { |
|---|
| 114 | $this->_smarty->assign($key, $val); |
|---|
| 115 | } |
|---|
| 116 | } |
|---|
| 117 | |
|---|
| 118 | /* サイト初期設定 */ |
|---|
| 119 | function initpath() { |
|---|
| 120 | global $SC_VIEW_PHP_DIR; |
|---|
| 121 | |
|---|
| 122 | $array['tpl_mainnavi'] = $SC_VIEW_PHP_DIR . '/../Smarty/templates/frontparts/mainnavi.tpl'; |
|---|
| 123 | $array['tpl_root_id'] = SC_Utils::sfGetRootId(); |
|---|
| 124 | $this->assignarray($array); |
|---|
| 125 | } |
|---|
| 126 | |
|---|
| 127 | // デバッグ |
|---|
| 128 | function debug($var = true){ |
|---|
| 129 | $this->_smarty->debugging = $var; |
|---|
| 130 | } |
|---|
| 131 | } |
|---|
| 132 | |
|---|
| 133 | class SC_AdminView extends SC_View{ |
|---|
| 134 | function SC_AdminView() { |
|---|
| 135 | parent::SC_View(false); |
|---|
| 136 | $this->_smarty->template_dir = TEMPLATE_ADMIN_DIR; |
|---|
| 137 | $this->_smarty->compile_dir = COMPILE_ADMIN_DIR; |
|---|
| 138 | $this->initpath(); |
|---|
| 139 | } |
|---|
| 140 | |
|---|
| 141 | function printr($data){ |
|---|
| 142 | print_r($data); |
|---|
| 143 | } |
|---|
| 144 | } |
|---|
| 145 | |
|---|
| 146 | class SC_SiteView extends SC_View{ |
|---|
| 147 | function SC_SiteView($cart = true) { |
|---|
| 148 | parent::SC_View(); |
|---|
| 149 | |
|---|
| 150 | $this->_smarty->template_dir = TEMPLATE_DIR; |
|---|
| 151 | $this->_smarty->compile_dir = COMPILE_DIR; |
|---|
| 152 | $this->initpath(); |
|---|
| 153 | |
|---|
| 154 | // PHP5ではsessionをスタートする前にヘッダー情報を送信していると警告が出るため、先にセッションをスタートするように変更 |
|---|
| 155 | SC_Utils::sfDomainSessionStart(); |
|---|
| 156 | |
|---|
| 157 | if($cart){ |
|---|
| 158 | $include_dir = realpath(dirname( __FILE__)); |
|---|
| 159 | require_once($include_dir . "/SC_CartSession.php"); |
|---|
| 160 | $objCartSess = new SC_CartSession(); |
|---|
| 161 | $objCartSess->setPrevURL($_SERVER['REQUEST_URI']); |
|---|
| 162 | } |
|---|
| 163 | } |
|---|
| 164 | } |
|---|
| 165 | |
|---|
| 166 | class SC_UserView extends SC_SiteView{ |
|---|
| 167 | function SC_UserView($template_dir, $compile_dir = COMPILE_DIR) { |
|---|
| 168 | parent::SC_SiteView(); |
|---|
| 169 | $this->_smarty->template_dir = $template_dir; |
|---|
| 170 | $this->_smarty->compile_dir = $compile_dir; |
|---|
| 171 | } |
|---|
| 172 | } |
|---|
| 173 | |
|---|
| 174 | class SC_InstallView extends SC_View{ |
|---|
| 175 | function SC_InstallView($template_dir, $compile_dir = COMPILE_DIR) { |
|---|
| 176 | parent::SC_View(false); |
|---|
| 177 | $this->_smarty->template_dir = $template_dir; |
|---|
| 178 | $this->_smarty->compile_dir = $compile_dir; |
|---|
| 179 | } |
|---|
| 180 | } |
|---|
| 181 | |
|---|
| 182 | class SC_MobileView extends SC_SiteView { |
|---|
| 183 | function SC_MobileView() { |
|---|
| 184 | parent::SC_SiteView(); |
|---|
| 185 | $this->_smarty->template_dir = MOBILE_TEMPLATE_DIR; |
|---|
| 186 | $this->_smarty->compile_dir = MOBILE_COMPILE_DIR; |
|---|
| 187 | } |
|---|
| 188 | } |
|---|
| 189 | ?> |
|---|