Ignore:
Timestamp:
2013/08/26 15:52:37 (11 years ago)
Author:
m_uehara
Message:

#2348 r23116 - r23125 をマージ

File:
1 edited

Legend:

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

    r22856 r23126  
    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.