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/frontparts/bloc/LC_Page_FrontParts_Bloc_Calendar.php

    r22206 r22567  
    3333 * @version $ $ 
    3434 */ 
    35 class LC_Page_FrontParts_Bloc_Calendar extends LC_Page_FrontParts_Bloc_Ex { 
     35class LC_Page_FrontParts_Bloc_Calendar extends LC_Page_FrontParts_Bloc_Ex  
     36{ 
    3637 
    3738    // }}} 
     
    4344     * @return void 
    4445     */ 
    45     function init() { 
     46    function init() 
     47    { 
    4648        parent::init(); 
    4749    } 
     
    5254     * @return void 
    5355     */ 
    54     function process() { 
     56    function process() 
     57    { 
    5558        $this->action(); 
    5659        $this->sendResponse(); 
     
    6265     * @return void 
    6366     */ 
    64     function action() { 
     67    function action() 
     68    { 
    6569 
    6670        // 休日取得取得 
     
    7983     * @return void 
    8084     */ 
    81     function destroy() { 
     85    function destroy() 
     86    { 
    8287        parent::destroy(); 
    8388    } 
     
    8994     * @return array カレンダー情報の配列を返す 
    9095     */ 
    91     function lfGetCalendar($disp_month = 1) { 
     96    function lfGetCalendar($disp_month = 1) 
     97    { 
    9298        $arrCalendar = array(); 
    9399        $today = date('Y/m/d'); 
     
    124130     * @return array $arrHoliday 休日情報の配列を返す 
    125131     */ 
    126     function lfGetHoliday() { 
     132    function lfGetHoliday() 
     133    { 
    127134        $objQuery = SC_Query_Ex::getSingletonInstance(); 
    128135        $objQuery->setOrder('rank DESC'); 
     
    141148     * @return array $arrRegularHoliday 定休日情報の配列を返す 
    142149     */ 
    143     function lfGetRegularHoliday() { 
     150    function lfGetRegularHoliday() 
     151    { 
    144152        $arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); 
    145153        $arrRegularHoliday = explode('|', $arrInfo['regular_holiday_ids']); 
     
    155163     * @return boolean 休日の場合trueを返す 
    156164     */ 
    157     function lfCheckHoliday($year, $month, $day) { 
     165    function lfCheckHoliday($year, $month, $day) 
     166    { 
    158167        if (!empty($this->arrHoliday[$month])) { 
    159168            if (in_array($day, $this->arrHoliday[$month])) { 
Note: See TracChangeset for help on using the changeset viewer.