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/cart/LC_Page_Cart.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Cart extends LC_Page_Ex { 
     34class LC_Page_Cart extends LC_Page_Ex  
     35{ 
    3536 
    3637    // {{{ properties 
     
    5354     * @return void 
    5455     */ 
    55     function init() { 
     56    function init() 
     57    { 
    5658        parent::init(); 
    5759        $this->tpl_title = '現在のカゴの中'; 
     
    6668     * @return void 
    6769     */ 
    68     function process() { 
     70    function process() 
     71    { 
    6972        parent::process(); 
    7073        $this->action(); 
     
    7780     * @return void 
    7881     */ 
    79     function action() { 
     82    function action() 
     83    { 
    8084 
    8185        $objCartSess = new SC_CartSession_Ex(); 
     
    191195     * @return void 
    192196     */ 
    193     function destroy() { 
     197    function destroy() 
     198    { 
    194199        parent::destroy(); 
    195200    } 
     
    200205     * @return object 
    201206     */ 
    202     function lfInitParam($arrRequest) { 
     207    function lfInitParam($arrRequest) 
     208    { 
    203209        $objFormParam = new SC_FormParam_Ex(); 
    204210        $objFormParam->addParam('カートキー', 'cartKey', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK')); 
     
    220226     * @return 
    221227     */ 
    222     function lfUpdateOrderTempid($pre_uniqid,$uniqid) { 
     228    function lfUpdateOrderTempid($pre_uniqid,$uniqid) 
     229    { 
    223230        $sqlval['order_temp_id'] = $uniqid; 
    224231        $where = 'order_temp_id = ?'; 
     
    236243     * @return void 
    237244     */ 
    238     function lfGetCartPrevUrl(&$session,$referer) { 
     245    function lfGetCartPrevUrl(&$session,$referer) 
     246    { 
    239247        if (!preg_match('/cart/', $referer)) { 
    240248            if (!empty($session['cart_referer_url'])) { 
     
    260268     * @return void 
    261269     */ 
    262     function lfSetCurrentCart(&$objSiteSess, &$objCartSess, $cartKey) { 
     270    function lfSetCurrentCart(&$objSiteSess, &$objCartSess, $cartKey) 
     271    { 
    263272        // 正常に登録されたことを記録しておく 
    264273        $objSiteSess->setRegistFlag(); 
Note: See TracChangeset for help on using the changeset viewer.