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/admin/order/LC_Page_Admin_Order.php

    r22537 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Order extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Order extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_mainpage = 'order/index.tpl'; 
     
    8183     * @return void 
    8284     */ 
    83     function process() { 
     85    function process() 
     86    { 
    8487        $this->action(); 
    8588        $this->sendResponse(); 
     
    9194     * @return void 
    9295     */ 
    93     function action() { 
     96    function action() 
     97    { 
    9498 
    9599        $objFormParam = new SC_FormParam_Ex(); 
     
    182186     * @return void 
    183187     */ 
    184     function destroy() { 
     188    function destroy() 
     189    { 
    185190        parent::destroy(); 
    186191    } 
     
    192197     * @return void 
    193198     */ 
    194     function lfInitParam(&$objFormParam) { 
     199    function lfInitParam(&$objFormParam) 
     200    { 
    195201        $objFormParam->addParam('注文番号1', 'search_order_id1', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    196202        $objFormParam->addParam('注文番号2', 'search_order_id2', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
     
    239245     * @return void 
    240246     */ 
    241     function lfCheckError(&$objFormParam) { 
     247    function lfCheckError(&$objFormParam) 
     248    { 
    242249        $objErr = new SC_CheckError_Ex($objFormParam->getHashArray()); 
    243250        $objErr->arrErr = $objFormParam->checkError(); 
     
    277284     * @return void 
    278285     */ 
    279     function buildQuery($key, &$where, &$arrValues, &$objFormParam) { 
     286    function buildQuery($key, &$where, &$arrValues, &$objFormParam) 
     287    { 
    280288        $dbFactory = SC_DB_DBFactory_Ex::getInstance(); 
    281289        switch ($key) { 
     
    411419     * @return void 
    412420     */ 
    413     function doDelete($where, $arrParam = array()) { 
     421    function doDelete($where, $arrParam = array()) 
     422    { 
    414423        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    415424        $sqlval['del_flg']     = 1; 
     
    429438     * @return void 
    430439     */ 
    431     function doOutputCSV($where, $arrVal, $order) { 
     440    function doOutputCSV($where, $arrVal, $order) 
     441    { 
    432442        if ($where != '') { 
    433443            $where = " WHERE $where "; 
     
    445455     * @return integer 検索結果の行数 
    446456     */ 
    447     function getNumberOfLines($where, $arrValues) { 
     457    function getNumberOfLines($where, $arrValues) 
     458    { 
    448459        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    449460        return $objQuery->count('dtb_order', $where, $arrValues); 
     
    460471     * @return array 受注の検索結果 
    461472     */ 
    462     function findOrders($where, $arrValues, $limit, $offset, $order) { 
     473    function findOrders($where, $arrValues, $limit, $offset, $order) 
     474    { 
    463475        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    464476        if ($limit != 0) { 
Note: See TracChangeset for help on using the changeset viewer.