source: branches/dev/data/class/SC_View.php @ 14454

Revision 14454, 5.6 KB checked in by matsumura, 19 years ago (diff)
Line 
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__));
9require_once($SC_VIEW_PHP_DIR . "/../module/Smarty/libs/Smarty.class.php");
10require_once($SC_VIEW_PHP_DIR . "/../include/php_ini.inc");
11
12class SC_View {
13   
14    var $_smarty;
15    var $objSiteInfo; // ¥µ¥¤¥È¾ðÊó
16   
17    // ¥³¥ó¥¹¥È¥é¥¯¥¿
18    function SC_View($siteinfo = true) {
19        global $SC_VIEW_PHP_DIR;
20
21        $this->_smarty = new Smarty;
22        $this->_smarty->left_delimiter = '<!--{';
23        $this->_smarty->right_delimiter = '}-->';
24        $this->_smarty->register_modifier("sfDispDBDate","sfDispDBDate");
25        $this->_smarty->register_modifier("sfConvSendDateToDisp","sfConvSendDateToDisp");
26        $this->_smarty->register_modifier("sfConvSendWdayToDisp","sfConvSendWdayToDisp");
27        $this->_smarty->register_modifier("sfGetVal", "sfGetVal");
28        $this->_smarty->register_function("sfSetErrorStyle","sfSetErrorStyle");
29        $this->_smarty->register_function("sfGetErrorColor","sfGetErrorColor");
30        $this->_smarty->register_function("sfTrim", "sfTrim");
31        $this->_smarty->register_function("sfPreTax", "sfPreTax");
32        $this->_smarty->register_function("sfPrePoint", "sfPrePoint");
33        $this->_smarty->register_function("sfGetChecked", "sfGetChecked");
34        $this->_smarty->register_function("sfTrimURL", "sfTrimURL");
35        $this->_smarty->register_function("sfMultiply", "sfMultiply");
36        $this->_smarty->register_function("sfPutBR", "sfPutBR");
37        $this->_smarty->register_function("sfRmDupSlash", "sfRmDupSlash");
38        $this->_smarty->register_function("sfCutString", "sfCutString");
39        $this->_smarty->plugins_dir=array("plugins", $SC_VIEW_PHP_DIR . "/../smarty_extends");
40        $this->_smarty->register_function("sf_mb_convert_encoding","sf_mb_convert_encoding");
41        $this->_smarty->register_function("sf_mktime","sf_mktime");
42        $this->_smarty->register_function("sf_date","sf_date");
43        $this->_smarty->register_function("str_replace","str_replace");
44        $this->_smarty->register_function("sfPrintEbisTag","sfPrintEbisTag");
45        $this->_smarty->register_function("sfPrintAffTag","sfPrintAffTag");
46        $this->_smarty->default_modifiers = array('script_escape');
47       
48        if(ADMIN_MODE == '1') {     
49            $this->time_start = time();
50        }
51
52        // ¥µ¥¤¥È¾ðÊó¤ò¼èÆÀ¤¹¤ë
53        if($siteinfo) {
54            if(!defined('LOAD_SITEINFO')) {
55                $this->objSiteInfo = new SC_SiteInfo();
56                $arrInfo['arrSiteInfo'] = $this->objSiteInfo->data;
57               
58                // ÅÔÆ»Éܸ©Ì¾¤òÊÑ´¹
59                global $arrPref;
60                $arrInfo['arrSiteInfo']['pref'] = $arrPref[$arrInfo['arrSiteInfo']['pref']];
61               
62                // ¥µ¥¤¥È¾ðÊó¤ò³ä¤êÅö¤Æ¤ë
63                foreach ($arrInfo as $key => $value){
64                    $this->_smarty->assign($key, $value);
65                }
66               
67                define('LOAD_SITEINFO', 1);
68            }
69        }
70    }
71   
72    // ¥Æ¥ó¥×¥ì¡¼¥È¤ËÃͤò³ä¤êÅö¤Æ¤ë
73    function assign($val1, $val2) {
74        $this->_smarty->assign($val1, $val2);
75    }
76   
77    // ¥Æ¥ó¥×¥ì¡¼¥È¤Î½èÍý·ë²Ì¤ò¼èÆÀ
78    function fetch($template) {
79        return $this->_smarty->fetch($template);
80    }
81   
82    // ¥Æ¥ó¥×¥ì¡¼¥È¤Î½èÍý·ë²Ì¤òɽ¼¨
83    function display($template, $no_error = false) {
84        if(!$no_error) {
85            global $GLOBAL_ERR;
86            if(!defined('OUTPUT_ERR')) {
87                print($GLOBAL_ERR);
88                define('OUTPUT_ERR','ON');
89            }
90        }
91       
92        $this->_smarty->display($template);
93        if(ADMIN_MODE == '1') {
94            $time_end = time();
95            $time = $time_end - $this->time_start;
96            print("½èÍý»þ´Ö:" . $time . "ÉÃ");
97        }
98       
99        print($_SERVER["SERVER_ADDR"]."-");
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'] = sfGetRootId();
124        $this->assignarray($array);
125    }
126   
127    // ¥Ç¥Ð¥Ã¥°
128    function debug($var = true){
129        $this->_smarty->debugging = $var;
130    }   
131}
132
133class 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
146class 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        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
166class 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
174class 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
182class 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?>
Note: See TracBrowser for help on using the repository browser.