- Timestamp:
- 2007/02/25 00:33:58 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
temp/branches/mobile/data/module/Net/UserAgent/Mobile/NonMobile.php
r11398 r11456 1 1 <?php 2 2 /* 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 */ 21 22 22 23 require_once(dirname(__FILE__) . '/Common.php'); 23 24 require_once(dirname(__FILE__) . '/Display.php'); 25 26 // {{{ Net_UserAgent_Mobile_NonMobile 24 27 25 28 /** … … 32 35 * SYNOPSIS: 33 36 * <code> 34 * require_once ('Net/UserAgent/Mobile.php');37 * require_once 'Net/UserAgent/Mobile.php'; 35 38 * 36 39 * $_SERVER['HTTP_USER_AGENT'] = 'Mozilla/4.0'; … … 38 41 * </code> 39 42 * 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 46 51 */ 47 52 class Net_UserAgent_Mobile_NonMobile extends Net_UserAgent_Mobile_Common 48 53 { 54 55 // {{{ properties 56 57 /**#@+ 58 * @access public 59 */ 60 61 /**#@-*/ 62 63 /**#@+ 64 * @access private 65 */ 66 67 /**#@-*/ 49 68 50 69 /**#@+ … … 145 164 146 165 /**#@-*/ 166 167 /**#@+ 168 * @access private 169 */ 170 171 /**#@-*/ 172 173 // }}} 147 174 } 175 176 // }}} 148 177 149 178 /*
Note: See TracChangeset
for help on using the changeset viewer.
