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

Revision 3444, 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        if(!defined('OUTPUT_ERR')) {
75            print($GLOBAL_ERR);
76            define('OUTPUT_ERR','ON');
77        }
78        $this->_smarty->display($template);
79        if(ADMIN_MODE == '1') {
80            $time_end = time();
81            $time = $time_end - $this->time_start;
82            print("½èÍý»þ´Ö:" . $time . "ÉÃ");
83        }
84    }
85   
86    // ¥ª¥Ö¥¸¥§¥¯¥ÈÆâ¤ÎÊÑ¿ô¤ò¤¹¤Ù¤Æ³ä¤êÅö¤Æ¤ë¡£
87    function assignobj($obj) {
88        $data = get_object_vars($obj);
89       
90        foreach ($data as $key => $value){
91            $this->_smarty->assign($key, $value);
92        }
93    }
94   
95    // Ï¢ÁÛÇÛÎóÆâ¤ÎÊÑ¿ô¤ò¤¹¤Ù¤Æ³ä¤êÅö¤Æ¤ë¡£
96    function assignarray($array) {
97        foreach ($array as $key => $val) {
98            $this->_smarty->assign($key, $val);
99        }
100    }
101
102    /* ¥µ¥¤¥È½é´üÀßÄê */
103    function initpath() {
104        global $SC_VIEW_PHP_DIR;
105       
106        $array['tpl_mainnavi'] = $SC_VIEW_PHP_DIR . '/../Smarty/templates/frontparts/mainnavi.tpl';
107        $array['tpl_root_id'] = sfGetRootId();
108        $this->assignarray($array);
109    }
110}
111
112class SC_AdminView extends SC_View{
113    function SC_AdminView() {
114        parent::SC_View(false);
115        $this->_smarty->template_dir = TEMPLATE_ADMIN_DIR;
116        $this->_smarty->compile_dir = COMPILE_ADMIN_DIR;
117        $this->initpath();
118    }
119
120    function printr($data){
121        print_r($data);
122    }
123}
124
125class SC_SiteView extends SC_View{
126    function SC_SiteView() {
127        parent::SC_View();
128        $this->_smarty->template_dir = TEMPLATE_DIR;
129        $this->_smarty->compile_dir = COMPILE_DIR;
130        $this->initpath();
131       
132        // PHP5¤Ç¤Ïsession¤ò¥¹¥¿¡¼¥È¤¹¤ëÁ°¤Ë¥Ø¥Ã¥À¡¼¾ðÊó¤òÁ÷¿®¤·¤Æ¤¤¤ë¤È·Ù¹ð¤¬½Ð¤ë¤¿¤á¡¢Àè¤Ë¥»¥Ã¥·¥ç¥ó¤ò¥¹¥¿¡¼¥È¤¹¤ë¤è¤¦¤ËÊѹ¹
133        sfDomainSessionStart();
134    }
135}
136
137class SC_UserView extends SC_SiteView{
138    function SC_UserView($template_dir, $compile_dir = COMPILE_DIR) {
139        parent::SC_SiteView();
140        $this->_smarty->template_dir = $template_dir;
141        $this->_smarty->compile_dir = $compile_dir;
142    }
143}
144
145class SC_InstallView extends SC_View{
146    function SC_InstallView($template_dir, $compile_dir = COMPILE_DIR) {
147        parent::SC_View(false);
148        $this->_smarty->template_dir = $template_dir;
149        $this->_smarty->compile_dir = $compile_dir;
150    }
151}
152
153?>
Note: See TracBrowser for help on using the repository browser.