Changeset 22856 for branches/version-2_13-dev/data/class/pages/rss
- Timestamp:
- 2013/06/08 16:35:27 (13 years ago)
- Location:
- branches/version-2_13-dev/data/class/pages/rss
- Files:
-
- 2 edited
-
LC_Page_Rss.php (modified) (3 diffs)
-
LC_Page_Rss_Products.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/pages/rss/LC_Page_Rss.php
r22841 r22856 22 22 */ 23 23 24 // {{{ requires25 24 require_once CLASS_EX_REALDIR . 'page_extends/LC_Page_Ex.php'; 26 25 … … 32 31 * @version $Id$ 33 32 */ 34 class LC_Page_RSS extends LC_Page_Ex 33 class LC_Page_RSS extends LC_Page_Ex 35 34 { 36 37 // }}}38 // {{{ functions39 40 35 /** 41 36 * Page を初期化する. … … 58 53 function process() 59 54 { 60 61 55 $objView = new SC_SiteView_Ex(false); 62 56 -
branches/version-2_13-dev/data/class/pages/rss/LC_Page_Rss_Products.php
r22833 r22856 22 22 */ 23 23 24 // {{{ requires25 24 require_once CLASS_EX_REALDIR . 'page_extends/LC_Page_Ex.php'; 26 25 … … 34 33 class LC_Page_Rss_Products extends LC_Page_Ex 35 34 { 36 37 // }}}38 // {{{ functions39 40 35 /** 41 36 * Page を初期化する. … … 68 63 function action() 69 64 { 70 71 65 $objView = new SC_SiteView_Ex(); 72 66 … … 184 178 } 185 179 } 180 186 181 return $arrProduct; 187 182 } … … 197 192 //商品一覧を取得 198 193 $arrProduct = $objQuery->getAll('SELECT product_id, name AS product_name FROM dtb_products'); 194 199 195 return $arrProduct; 200 196 } … … 241 237 ); 242 238 } 239 243 240 return $arrProduct; 244 241 } … … 284 281 } 285 282 } 283 286 284 return $arrProduct; 287 285 }
Note: See TracChangeset
for help on using the changeset viewer.
