Ignore:
Timestamp:
2007/02/25 00:33:58 (19 years ago)
Author:
rebelt
Message:

PEAR Net_UserAgent_Mobile 0.30.0 をインポートしました。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/branches/mobile/data/module/Net/UserAgent/Mobile/NonMobile.php

    r11398 r11456  
    11<?php 
    22/* vim: set expandtab tabstop=4 shiftwidth=4: */ 
    3 // +----------------------------------------------------------------------+ 
    4 // | PHP version 4                                                        | 
    5 // +----------------------------------------------------------------------+ 
    6 // | Copyright (c) 1997-2004 The PHP Group                                | 
    7 // +----------------------------------------------------------------------+ 
    8 // | This source file is subject to version 3.0 of the PHP license,       | 
    9 // | that is bundled with this package in the file LICENSE, and is        | 
    10 // | available through the world-wide-web at the following url:           | 
    11 // | http://www.php.net/license/3_0.txt.                                  | 
    12 // | If you did not receive a copy of the PHP license and are unable to   | 
    13 // | obtain it through the world-wide-web, please send a note to          | 
    14 // | [email protected] so we can mail you a copy immediately.               | 
    15 // +----------------------------------------------------------------------+ 
    16 // | Authors: KUBO Atsuhiro <[email protected]>                            | 
    17 // +----------------------------------------------------------------------+ 
    18 // 
    19 // $Id: NonMobile.php,v 1.10 2006/11/07 09:25:14 kuboa Exp $ 
    20 // 
     3 
     4/** 
     5 * PHP versions 4 and 5 
     6 * 
     7 * LICENSE: This source file is subject to version 3.0 of the PHP license 
     8 * that is available through the world-wide-web at the following URI: 
     9 * http://www.php.net/license/3_0.txt.  If you did not receive a copy of 
     10 * the PHP License and are unable to obtain it through the web, please 
     11 * send a note to [email protected] so we can mail you a copy immediately. 
     12 * 
     13 * @category   Networking 
     14 * @package    Net_UserAgent_Mobile 
     15 * @author     KUBO Atsuhiro <[email protected]> 
     16 * @copyright  2003-2007 KUBO Atsuhiro <[email protected]> 
     17 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 
     18 * @version    CVS: $Id: NonMobile.php,v 1.12 2007/02/20 15:20:02 kuboa Exp $ 
     19 * @see        Net_UserAgent_Mobile_Common 
     20 * @since      File available since Release 0.1.0 
     21 */ 
    2122 
    2223require_once(dirname(__FILE__) . '/Common.php'); 
    2324require_once(dirname(__FILE__) . '/Display.php'); 
     25 
     26// {{{ Net_UserAgent_Mobile_NonMobile 
    2427 
    2528/** 
     
    3235 * SYNOPSIS: 
    3336 * <code> 
    34  * require_once('Net/UserAgent/Mobile.php'); 
     37 * require_once 'Net/UserAgent/Mobile.php'; 
    3538 * 
    3639 * $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/4.0'; 
     
    3841 * </code> 
    3942 * 
    40  * @package  Net_UserAgent_Mobile 
    41  * @category Networking 
    42  * @author   KUBO Atsuhiro <[email protected]> 
    43  * @access   public 
    44  * @version  $Revision: 1.10 $ 
    45  * @see      Net_UserAgent_Mobile_Common 
     43 * @category   Networking 
     44 * @package    Net_UserAgent_Mobile 
     45 * @author     KUBO Atsuhiro <[email protected]> 
     46 * @copyright  2003-2007 KUBO Atsuhiro <[email protected]> 
     47 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 
     48 * @version    Release: 0.30.0 
     49 * @see        Net_UserAgent_Mobile_Common 
     50 * @since      Class available since Release 0.1.0 
    4651 */ 
    4752class Net_UserAgent_Mobile_NonMobile extends Net_UserAgent_Mobile_Common 
    4853{ 
     54 
     55    // {{{ properties 
     56 
     57    /**#@+ 
     58     * @access public 
     59     */ 
     60 
     61    /**#@-*/ 
     62 
     63    /**#@+ 
     64     * @access private 
     65     */ 
     66 
     67    /**#@-*/ 
    4968 
    5069    /**#@+ 
     
    145164 
    146165    /**#@-*/ 
     166 
     167    /**#@+ 
     168     * @access private 
     169     */ 
     170 
     171    /**#@-*/ 
     172 
     173    // }}} 
    147174} 
     175 
     176// }}} 
    148177 
    149178/* 
Note: See TracChangeset for help on using the changeset viewer.