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/entry/LC_Page_Entry.php

    r22206 r22567  
    3232 * @version $Id:LC_Page_Entry.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3333 */ 
    34 class LC_Page_Entry extends LC_Page_Ex { 
     34class LC_Page_Entry extends LC_Page_Ex  
     35{ 
    3536 
    3637    // {{{ properties 
     
    4344     * @return void 
    4445     */ 
    45     function init() { 
     46    function init() 
     47    { 
    4648        parent::init(); 
    4749        $masterData         = new SC_DB_MasterData_Ex(); 
     
    6466     * @return void 
    6567     */ 
    66     function process() { 
     68    function process() 
     69    { 
    6770        parent::process(); 
    6871        $this->action(); 
     
    7477     * @return void 
    7578     */ 
    76     function action() { 
     79    function action() 
     80    { 
    7781 
    7882        $objFormParam = new SC_FormParam_Ex(); 
     
    167171     * @return void 
    168172     */ 
    169     function destroy() { 
     173    function destroy() 
     174    { 
    170175        parent::destroy(); 
    171176    } 
     
    179184     * @return uniqid 
    180185     */ 
    181     function lfRegistCustomerData($sqlval) { 
     186    function lfRegistCustomerData($sqlval) 
     187    { 
    182188        SC_Helper_Customer_Ex::sfEditCustomerData($sqlval); 
    183189        return $sqlval['secret_key']; 
     
    195201     * @return $arrResults 
    196202     */ 
    197     function lfMakeSqlVal(&$objFormParam) { 
     203    function lfMakeSqlVal(&$objFormParam) 
     204    { 
    198205        $arrForm                = $objFormParam->getHashArray(); 
    199206        $arrResults             = $objFormParam->getDbArray(); 
     
    230237     * @return void 
    231238     */ 
    232     function lfSendMail($uniqid, $arrForm) { 
     239    function lfSendMail($uniqid, $arrForm) 
     240    { 
    233241        $CONF           = SC_Helper_DB_Ex::sfGetBasisData(); 
    234242 
     
    285293     * @return boolean kiyaku.php からの妥当な遷移であれば true 
    286294     */ 
    287     function lfCheckReferer(&$post, $referer) { 
     295    function lfCheckReferer(&$post, $referer) 
     296    { 
    288297 
    289298        if (SC_Display_Ex::detectDevice() !== DEVICE_TYPE_MOBILE 
     
    301310     * @return array $arrErr エラーメッセージ配列 
    302311     */ 
    303     function lfCheckError($arrRequest) { 
     312    function lfCheckError($arrRequest) 
     313    { 
    304314        // パラメーター管理クラス 
    305315        $objFormParam = new SC_FormParam_Ex(); 
     
    330340     * @return エラーなし:true エラー:false 
    331341     */ 
    332     function lfInputNameCheck($value) { 
     342    function lfInputNameCheck($value) 
     343    { 
    333344        // 半角英数字と_(アンダーバー), []以外の文字を使用していたらエラー 
    334345        if (strlen($value) > 0 && !preg_match("/^[a-zA-Z0-9_\[\]]+$/", $value)) { 
Note: See TracChangeset for help on using the changeset viewer.