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

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