Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/SC_SmartphoneUserAgent.php

    r22856 r23124  
    3535     * @return boolean 
    3636     */ 
    37     function isSmartphone() 
     37    public function isSmartphone() 
    3838    { 
    3939        $nu = new Net_UserAgent_Mobile(); 
     
    4747     * @return boolean 
    4848     */ 
    49     function isNonSmartphone() 
     49    public function isNonSmartphone() 
    5050    { 
    5151        return !SC_SmartphoneUserAgent_Ex::isSmartphone(); 
     
    5757     * @return string 
    5858     */ 
    59     function getSmartphonePcFlag() 
     59    public function getSmartphonePcFlag() 
    6060    { 
    6161        $_SESSION['pc_disp'] = empty($_SESSION['pc_disp']) ? false : $_SESSION['pc_disp']; 
     
    6767     * PC表示ON 
    6868     */ 
    69     function setPcDisplayOn() 
     69    public function setPcDisplayOn() 
    7070    { 
    7171        $_SESSION['pc_disp'] = true; 
     
    7575     * PC表示OFF 
    7676     */ 
    77     function setPcDisplayOff() 
     77    public function setPcDisplayOff() 
    7878    { 
    7979        $_SESSION['pc_disp'] = false; 
Note: See TracChangeset for help on using the changeset viewer.