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_Pdf.php

    r22524 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Order_Pdf extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Order_Pdf 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/pdf_input.tpl'; 
     
    6567     * @return void 
    6668     */ 
    67     function process() { 
     69    function process() 
     70    { 
    6871        $this->action(); 
    6972        $this->sendResponse(); 
     
    7578     * @return void 
    7679     */ 
    77     function action() { 
     80    function action() 
     81    { 
    7882 
    7983        $objDb = new SC_Helper_DB_Ex(); 
     
    116120     * PDF作成フォームのデフォルト値の生成 
    117121     */ 
    118     function createFromValues($order_id,$pdf_order_id) { 
     122    function createFromValues($order_id,$pdf_order_id) 
     123    { 
    119124        // ここが$arrFormの初登場ということを明示するため宣言する。 
    120125        $arrForm = array(); 
     
    150155     * @param SC_FormParam $objFormParam 
    151156     */ 
    152     function createPdf(&$objFormParam) { 
     157    function createPdf(&$objFormParam) 
     158    { 
    153159 
    154160        $arrErr = $this->lfCheckError($objFormParam); 
     
    176182     * @return void 
    177183     */ 
    178     function destroy() { 
     184    function destroy() 
     185    { 
    179186        parent::destroy(); 
    180187    } 
     
    184191     *  @param SC_FormParam 
    185192     */ 
    186     function lfInitParam(&$objFormParam) { 
     193    function lfInitParam(&$objFormParam) 
     194    { 
    187195        $objFormParam->addParam('注文番号', 'order_id', INT_LEN, 'n', array('EXIST_CHECK', 'MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    188196        $objFormParam->addParam('注文番号', 'pdf_order_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
     
    207215     */ 
    208216 
    209     function lfCheckError(&$objFormParam) { 
     217    function lfCheckError(&$objFormParam) 
     218    { 
    210219        // 入力データを渡す。 
    211220        $arrParams = $objFormParam->getHashArray(); 
Note: See TracChangeset for help on using the changeset viewer.