Changeset 18950 for branches/camp/camp-2_5-B/data/class/pages/LC_Page.php
- Timestamp:
- 2010/11/06 17:10:56 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-B/data/class/pages/LC_Page.php
r18701 r18950 73 73 var $transactionid; 74 74 75 /** */ 76 var $site_frame; 77 75 78 // }}} 76 79 // {{{ functions … … 86 89 $layout = new SC_Helper_PageLayout_Ex(); 87 90 $layout->sfGetPageLayout($this, false); 91 $this->tpl = SITE_FRAME; 88 92 } 89 93 … … 94 98 */ 95 99 function process() {} 100 101 /** 102 * Page の表示プロセス 103 * 104 * @return void 105 */ 106 function display() { 107 echo "\$this->tpl = $this->tpl<br />\n"; 108 echo "LC_Page::disp<br />\n"; 109 110 // SC_Helper_Pagin_Ex::process(); 111 $this->objView->assignobj($this); 112 113 // campaign 114 #if (is_object($this->objCampaignSess)) { 115 #$this->tpl = $this->objCampaignSess->getPageFrame(); 116 #} 117 118 if (!empty($this->redirect_url)) { 119 echo "redirect<br />\n"; 120 $this->sendRedirect($this->redirect_url); 121 } elseif(!empty($this->download)) { 122 echo "download<br />\n"; 123 } else { 124 echo "default<br />\n"; 125 $this->objView->display($this->tpl); 126 } 127 128 } 96 129 97 130 /**
Note: See TracChangeset
for help on using the changeset viewer.
