Ignore:
Timestamp:
2008/04/02 16:03:31 (16 years ago)
Author:
satou
Message:

SC_Utils::sfCustomDisplay@deprecated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/pages/products/LC_Page_Products_List.php

    r17168 r17199  
    7373     */ 
    7474    function process() { 
     75        $objView = new SC_SiteView(); 
    7576        $conn = new SC_DBConn(); 
    7677        $objDb = new SC_Helper_DB_Ex(); 
     78 
     79        // レイアウトデザインを取得 
     80        $helper = new SC_Helper_PageLayout_Ex(); 
     81        $helper->sfGetPageLayout($this, false, DEF_LAYOUT); 
    7782 
    7883        //表示件数の選択 
     
    191196        $this->arrSearch = $arrSearch; 
    192197 
    193         SC_Utils_Ex::sfCustomDisplay($this); 
     198        $objView->assignobj($this); 
     199        $objView->display(SITE_FRAME); 
    194200    } 
    195201 
     
    211217     */ 
    212218    function mobileProcess() { 
     219        $objView = new SC_MobileView(); 
    213220        $conn = new SC_DBConn(); 
    214221        $objDb = new SC_Helper_DB_Ex(); 
     
    336343        } 
    337344 
    338  
    339345        $this->tpl_subtitle = $tpl_subtitle; 
    340346        $this->tpl_search_mode = $tpl_search_mode; 
     
    348354        $this->arrSearch = $arrSearch; 
    349355        $this->tpl_mainpage = MOBILE_TEMPLATE_DIR . "products/list.tpl"; 
    350         SC_Utils_Ex::sfCustomDisplay($this, true); 
     356         
     357        $objView->assignobj($this); 
     358        $objView->display(SITE_FRAME); 
    351359    } 
    352360 
Note: See TracChangeset for help on using the changeset viewer.