source: temp/trunk/data/class/SC_View.php @ 7200

Revision 7200, 5.0 KB checked in by kakinaka, 20 years ago (diff)

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2/*
3 * Copyright(c) 2000-2006 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($include_dir . "/../data/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("srTrim", "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       
47        if(ADMIN_MODE == '1') {     
48            $this->time_start = time();
49        }
50
51        // ¥µ¥¤¥È¾ðÊó¤ò¼èÆÀ¤¹¤ë
52        if($siteinfo) {
53            if(!defined('LOAD_SITEINFO')) {
54                $this->objSiteInfo = new SC_SiteInfo();
55                $arrInfo['arrSiteInfo'] = $this->objSiteInfo->data;
56               
57                // ÅÔÆ»Éܸ©Ì¾¤òÊÑ´¹
58                global $arrPref;
59                $arrInfo['arrSiteInfo']['pref'] = $arrPref[$arrInfo['arrSiteInfo']['pref']];
60               
61                // ¥µ¥¤¥È¾ðÊó¤ò³ä¤êÅö¤Æ¤ë
62                foreach ($arrInfo as $key => $value){
63                    $this->_smarty->assign($key, $value);
64                }
65               
66                define('LOAD_SITEINFO', 1);
67            }
68        }
69    }
70   
71    // ¥Æ¥ó¥×¥ì¡¼¥È¤ËÃͤò³ä¤êÅö¤Æ¤ë
72    function assign($val1, $val2) {
73        $this->_smarty->assign($val1, $val2);
74    }
75   
76    // ¥Æ¥ó¥×¥ì¡¼¥È¤Î½èÍý·ë²Ì¤ò¼èÆÀ
77    function fetch($template) {
78        return $this->_smarty->fetch($template);
79    }
80   
81    // ¥Æ¥ó¥×¥ì¡¼¥È¤Î½èÍý·ë²Ì¤òɽ¼¨
82    function display($template, $no_error = false) {
83        if(!$no_error) {
84            global $GLOBAL_ERR;
85            if(!defined('OUTPUT_ERR')) {
86                print($GLOBAL_ERR);
87                define('OUTPUT_ERR','ON');
88            }
89        }
90       
91        sfprintr(ini_get("mbstring.http_input"));
92       
93        $this->_smarty->display($template);
94        if(ADMIN_MODE == '1') {
95            $time_end = time();
96            $time = $time_end - $this->time_start;
97            print("½èÍý»þ´Ö:" . $time . "ÉÃ");
98        }
99    }
100   
101    // ¥ª¥Ö¥¸¥§¥¯¥ÈÆâ¤ÎÊÑ¿ô¤ò¤¹¤Ù¤Æ³ä¤êÅö¤Æ¤ë¡£
102    function assignobj($obj) {
103        $data = get_object_vars($obj);
104       
105        foreach ($data as $key => $value){
106            $this->_smarty->assign($key, $value);
107        }
108    }
109   
110    // Ï¢ÁÛÇÛÎóÆâ¤ÎÊÑ¿ô¤ò¤¹¤Ù¤Æ³ä¤êÅö¤Æ¤ë¡£
111    function assignarray($array) {
112        foreach ($array as $key => $val) {
113            $this->_smarty->assign($key, $val);
114        }
115    }
116
117    /* ¥µ¥¤¥È½é´üÀßÄê */
118    function initpath() {
119        global $SC_VIEW_PHP_DIR;
120       
121        $array['tpl_mainnavi'] = $SC_VIEW_PHP_DIR . '/../Smarty/templates/frontparts/mainnavi.tpl';
122        $array['tpl_root_id'] = sfGetRootId();
123        $this->assignarray($array);
124    }
125}
126
127class SC_AdminView extends SC_View{
128    function SC_AdminView() {
129        parent::SC_View(false);
130        $this->_smarty->template_dir = TEMPLATE_ADMIN_DIR;
131        $this->_smarty->compile_dir = COMPILE_ADMIN_DIR;
132        $this->initpath();
133    }
134
135    function printr($data){
136        print_r($data);
137    }
138}
139
140class SC_SiteView extends SC_View{
141    function SC_SiteView() {
142        parent::SC_View();
143        $this->_smarty->template_dir = TEMPLATE_DIR;
144        $this->_smarty->compile_dir = COMPILE_DIR;
145        $this->initpath();
146       
147        // PHP5¤Ç¤Ïsession¤ò¥¹¥¿¡¼¥È¤¹¤ëÁ°¤Ë¥Ø¥Ã¥À¡¼¾ðÊó¤òÁ÷¿®¤·¤Æ¤¤¤ë¤È·Ù¹ð¤¬½Ð¤ë¤¿¤á¡¢Àè¤Ë¥»¥Ã¥·¥ç¥ó¤ò¥¹¥¿¡¼¥È¤¹¤ë¤è¤¦¤ËÊѹ¹
148        sfDomainSessionStart();
149    }
150}
151
152class SC_UserView extends SC_SiteView{
153    function SC_UserView($template_dir, $compile_dir = COMPILE_DIR) {
154        parent::SC_SiteView();
155        $this->_smarty->template_dir = $template_dir;
156        $this->_smarty->compile_dir = $compile_dir;
157    }
158}
159
160class SC_InstallView extends SC_View{
161    function SC_InstallView($template_dir, $compile_dir = COMPILE_DIR) {
162        parent::SC_View(false);
163        $this->_smarty->template_dir = $template_dir;
164        $this->_smarty->compile_dir = $compile_dir;
165    }
166}
167
168?>
Note: See TracBrowser for help on using the repository browser.