Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_Favorite.php

    r22486 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_MyPage_Favorite extends LC_Page_AbstractMypage_Ex { 
     34class LC_Page_MyPage_Favorite extends LC_Page_AbstractMypage_Ex  
     35{ 
    3536 
    3637    // {{{ properties 
     
    4748     * @return void 
    4849     */ 
    49     function init() { 
     50    function init() 
     51    { 
    5052        parent::init(); 
    5153        $this->tpl_subtitle = 'お気に入り一覧'; 
     
    5860     * @return void 
    5961     */ 
    60     function process() { 
     62    function process() 
     63    { 
    6164        parent::process(); 
    6265    } 
     
    6770     * @return void 
    6871     */ 
    69     function action() { 
     72    function action() 
     73    { 
    7074        $objCustomer = new SC_Customer_Ex(); 
    7175 
     
    111115     * @return void 
    112116     */ 
    113     function destroy() { 
     117    function destroy() 
     118    { 
    114119        parent::destroy(); 
    115120    } 
     
    123128     * @return array お気に入り商品一覧 
    124129     */ 
    125     function lfGetFavoriteProduct($customer_id, &$objPage) { 
     130    function lfGetFavoriteProduct($customer_id, &$objPage) 
     131    { 
    126132        $objQuery       = SC_Query_Ex::getSingletonInstance(); 
    127133        $objProduct     = new SC_Product_Ex(); 
     
    172178 
    173179    /* 仕方がない処理。。 */ 
    174     function lfMakeWhere($tablename, $arrProductId) { 
     180    function lfMakeWhere($tablename, $arrProductId) 
     181    { 
    175182 
    176183        // 取得した表示すべきIDだけを指定して情報を取得。 
     
    186193 
    187194    // お気に入り商品削除 
    188     function lfDeleteFavoriteProduct($customer_id, $product_id) { 
     195    function lfDeleteFavoriteProduct($customer_id, $product_id) 
     196    { 
    189197        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    190198 
Note: See TracChangeset for help on using the changeset viewer.