Ignore:
Timestamp:
2012/02/11 05:48:00 (12 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/helper/SC_Helper_FileManager.php

    r21444 r21481  
    177177        // 最上位層を格納(user_data/) 
    178178        if ($this->sfDirChildExists($dir)) { 
    179             $arrTree[$cnt]['type'] = "_parent"; 
     179            $arrTree[$cnt]['type'] = '_parent'; 
    180180        } else { 
    181             $arrTree[$cnt]['type'] = "_child"; 
     181            $arrTree[$cnt]['type'] = '_child'; 
    182182        } 
    183183        $arrTree[$cnt]['path'] = $dir; 
     
    224224                            $arrTree[$cnt]['path'] = $path; 
    225225                            if ($this->sfDirChildExists($path)) { 
    226                                 $arrTree[$cnt]['type'] = "_parent"; 
     226                                $arrTree[$cnt]['type'] = '_parent'; 
    227227                            } else { 
    228                                 $arrTree[$cnt]['type'] = "_child"; 
     228                                $arrTree[$cnt]['type'] = '_child'; 
    229229                            } 
    230230 
Note: See TracChangeset for help on using the changeset viewer.