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

Revision 3442, 4.5 KB checked in by naka, 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$SC_VIEW_PHP_DIR = realpath(dirname(__FILE__));
3require_once($SC_VIEW_PHP_DIR . "/../module/Smarty/libs/Smarty.class.php");
4
5class SC_View {
6   
7    var $_smarty;
8    var $objSiteInfo; // ¥µ¥¤¥È¾ðÊó
9   
10    // ¥³¥ó¥¹¥È¥é¥¯¥¿
11    function SC_View($siteinfo = true) {
12        global $SC_VIEW_PHP_DIR;
13
14        $this->_smarty = new Smarty;
15        $this->_smarty->left_delimiter = '<!--{';
16        $this->_smarty->right_delimiter = '}-->';
17        $this->_smarty->register_modifier("sfDispDBDate","sfDispDBDate");
18        $this->_smarty->register_modifier("sfConvSendDateToDisp","sfConvSendDateToDisp");
19        $this->_smarty->register_modifier("sfConvSendWdayToDisp","sfConvSendWdayToDisp");
20        $this->_smarty->register_modifier("sfGetVal", "sfGetVal");
21        $this->_smarty->register_function("sfSetErrorStyle","sfSetErrorStyle");
22        $this->_smarty->register_function("sfGetErrorColor","sfGetErrorColor");
23        $this->_smarty->register_function("srTrim", "sfTrim");
24        $this->_smarty->register_function("sfPreTax", "sfPreTax");
25        $this->_smarty->register_function("sfPrePoint", "sfPrePoint");
26        $this->_smarty->register_function("sfGetChecked", "sfGetChecked");
27        $this->_smarty->register_function("sfTrimURL", "sfTrimURL");
28        $this->_smarty->register_function("sfMultiply", "sfMultiply");
29        $this->_smarty->register_function("sfPutBR", "sfPutBR");
30        $this->_smarty->register_function("sfRmDupSlash", "sfRmDupSlash");
31        $this->_smarty->register_function("sfCutString", "sfCutString");
32        $this->_smarty->plugins_dir=array("plugins", $SC_VIEW_PHP_DIR . "/../smarty_extends");
33        $this->_smarty->register_function("sf_mb_convert_encoding","sf_mb_convert_encoding");
34        $this->_smarty->register_function("sf_mktime","sf_mktime");
35        $this->_smarty->register_function("sf_date","sf_date");     
36
37        if(ADMIN_MODE == '1') {     
38            $this->time_start = time();
39        }
40
41        // ¥µ¥¤¥È¾ðÊó¤ò¼èÆÀ¤¹¤ë
42        if($siteinfo) {
43            if(!defined('LOAD_SITEINFO')) {
44                $this->objSiteInfo = new SC_SiteInfo();
45                $arrInfo['arrSiteInfo'] = $this->objSiteInfo->data;
46               
47                // ÅÔÆ»Éܸ©Ì¾¤òÊÑ´¹
48                global $arrPref;
49                $arrInfo['arrSiteInfo']['pref'] = $arrPref[$arrInfo['arrSiteInfo']['pref']];
50               
51                // ¥µ¥¤¥È¾ðÊó¤ò³ä¤êÅö¤Æ¤ë
52                foreach ($arrInfo as $key => $value){
53                    $this->_smarty->assign($key, $value);
54                }
55               
56                define('LOAD_SITEINFO', 1);
57            }
58        }
59    }
60   
61    // ¥Æ¥ó¥×¥ì¡¼¥È¤ËÃͤò³ä¤êÅö¤Æ¤ë
62    function assign($val1, $val2) {
63        $this->_smarty->assign($val1, $val2);
64    }
65   
66    // ¥Æ¥ó¥×¥ì¡¼¥È¤Î½èÍý·ë²Ì¤ò¼èÆÀ
67    function fetch($template) {
68        return $this->_smarty->fetch($template);
69    }
70   
71    // ¥Æ¥ó¥×¥ì¡¼¥È¤Î½èÍý·ë²Ì¤òɽ¼¨
72    function display($template) {
73        global $GLOBAL_ERR;
74        print("test" . $GLOBAL_ERR);
75        $this->_smarty->display($template);
76        if(ADMIN_MODE == '1') {
77            $time_end = time();
78            $time = $time_end - $this->time_start;
79            print("½èÍý»þ´Ö:" . $time . "ÉÃ");
80        }
81    }
82   
83    // ¥ª¥Ö¥¸¥§¥¯¥ÈÆâ¤ÎÊÑ¿ô¤ò¤¹¤Ù¤Æ³ä¤êÅö¤Æ¤ë¡£
84    function assignobj($obj) {
85        $data = get_object_vars($obj);
86       
87        foreach ($data as $key => $value){
88            $this->_smarty->assign($key, $value);
89        }
90    }
91   
92    // Ï¢ÁÛÇÛÎóÆâ¤ÎÊÑ¿ô¤ò¤¹¤Ù¤Æ³ä¤êÅö¤Æ¤ë¡£
93    function assignarray($array) {
94        foreach ($array as $key => $val) {
95            $this->_smarty->assign($key, $val);
96        }
97    }
98
99    /* ¥µ¥¤¥È½é´üÀßÄê */
100    function initpath() {
101        global $SC_VIEW_PHP_DIR;
102       
103        $array['tpl_mainnavi'] = $SC_VIEW_PHP_DIR . '/../Smarty/templates/frontparts/mainnavi.tpl';
104        $array['tpl_root_id'] = sfGetRootId();
105        $this->assignarray($array);
106    }
107}
108
109class SC_AdminView extends SC_View{
110    function SC_AdminView() {
111        parent::SC_View(false);
112        $this->_smarty->template_dir = TEMPLATE_ADMIN_DIR;
113        $this->_smarty->compile_dir = COMPILE_ADMIN_DIR;
114        $this->initpath();
115    }
116
117    function printr($data){
118        print_r($data);
119    }
120}
121
122class SC_SiteView extends SC_View{
123    function SC_SiteView() {
124        parent::SC_View();
125        $this->_smarty->template_dir = TEMPLATE_DIR;
126        $this->_smarty->compile_dir = COMPILE_DIR;
127        $this->initpath();
128       
129        // PHP5¤Ç¤Ïsession¤ò¥¹¥¿¡¼¥È¤¹¤ëÁ°¤Ë¥Ø¥Ã¥À¡¼¾ðÊó¤òÁ÷¿®¤·¤Æ¤¤¤ë¤È·Ù¹ð¤¬½Ð¤ë¤¿¤á¡¢Àè¤Ë¥»¥Ã¥·¥ç¥ó¤ò¥¹¥¿¡¼¥È¤¹¤ë¤è¤¦¤ËÊѹ¹
130        sfDomainSessionStart();
131    }
132}
133
134class SC_UserView extends SC_SiteView{
135    function SC_UserView($template_dir, $compile_dir = COMPILE_DIR) {
136        parent::SC_SiteView();
137        $this->_smarty->template_dir = $template_dir;
138        $this->_smarty->compile_dir = $compile_dir;
139    }
140}
141
142class SC_InstallView extends SC_View{
143    function SC_InstallView($template_dir, $compile_dir = COMPILE_DIR) {
144        parent::SC_View(false);
145        $this->_smarty->template_dir = $template_dir;
146        $this->_smarty->compile_dir = $compile_dir;
147    }
148}
149
150?>
Note: See TracBrowser for help on using the repository browser.