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/api/operations/ItemSearch.php

    r22486 r22567  
    3131require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php'; 
    3232 
    33 class API_ItemSearch extends SC_Api_Abstract_Ex { 
     33class API_ItemSearch extends SC_Api_Abstract_Ex  
     34{ 
    3435 
    3536    protected $operation_name = 'ItemSearch'; 
     
    4041    protected $default_sub_data = ''; 
    4142 
    42     public function doAction($arrParam) { 
     43    public function doAction($arrParam) 
     44    { 
    4345        $arrRequest = $this->doInitParam($arrParam); 
    4446        if (!$this->isParamError()) { 
     
    9294    } 
    9395 
    94     protected function lfInitParam(&$objFormParam) { 
     96    protected function lfInitParam(&$objFormParam) 
     97    { 
    9598        $objFormParam->addParam('カテゴリID', 'BrowseNode', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    9699        $objFormParam->addParam('キーワード', 'Keywords', STEXT_LEN, 'a', array('SPTAB_CHECK', 'MAX_LENGTH_CHECK')); 
     
    100103    } 
    101104 
    102     public function getResponseGroupName() { 
     105    public function getResponseGroupName() 
     106    { 
    103107        return 'Items'; 
    104108    } 
     
    111115     * TODO: LC_Page_Products_List::lfGetProductsList() と共通化 
    112116     */ 
    113     protected function getProductsList($searchCondition, $disp_number, $startno, $linemax, &$objProduct) { 
     117    protected function getProductsList($searchCondition, $disp_number, $startno, $linemax, &$objProduct) 
     118    { 
    114119 
    115120        $arrOrderVal = array(); 
     
    185190     * TODO: LC_Page_Products_List:;lfGetSearchCondition() と共通化 
    186191     */ 
    187     protected function getSearchCondition($arrSearchData) { 
     192    protected function getSearchCondition($arrSearchData) 
     193    { 
    188194        $searchCondition = array( 
    189195            'where'             => '', 
     
    254260     * @return Array $arrProducts 商品一覧情報 
    255261     */ 
    256     protected function setStatusDataTo($arrProducts, $arrStatus, $arrStatusImage) { 
     262    protected function setStatusDataTo($arrProducts, $arrStatus, $arrStatusImage) 
     263    { 
    257264 
    258265        foreach ($arrProducts['productStatus'] as $product_id => $arrValues) { 
Note: See TracChangeset for help on using the changeset viewer.