about summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
...
* Implemented panel shuffleStar Rauchenberger2023-04-163-10/+139
* Implemented color shuffleStar Rauchenberger2023-04-169-4/+2868
* Added support for THE MASTER as the goalStar Rauchenberger2023-04-162-5/+15
* Added death linkStar Rauchenberger2023-04-151-0/+28
* Sent items are now displayedStar Rauchenberger2023-04-151-5/+49
* Previous change broke progressive orange towerStar Rauchenberger2023-04-141-1/+1
* Receiving items shows the right name nowStar Rauchenberger2023-04-141-30/+46
* Created rudimentary message displayStar Rauchenberger2023-04-143-9/+103
* Getting THE END marks you as completedStar Rauchenberger2023-04-142-0/+10
* Fixed doubling up of progressive items on relaunchStar Rauchenberger2023-04-141-1/+4
* Handle Progressive Orange TowerStar Rauchenberger2023-04-131-0/+12
* Save file name is now generated from AP dataStar Rauchenberger2023-04-132-0/+9
* The answer to the YOU puzzle is the AP slot nameStar Rauchenberger2023-04-131-1/+11
* Location checks are held while the map is loadingStar Rauchenberger2023-04-132-6/+19
* It WORKS!Star Rauchenberger2023-04-136-0/+176
* Client switches to LL1 after a successful connectionStar Rauchenberger2023-04-132-0/+13
* Client authenticates nowStar Rauchenberger2023-04-133-0/+263
* Client connects to server and fetches data packageStar Rauchenberger2023-04-122-2/+81
* Created global client objectStar Rauchenberger2023-04-123-31/+59
* Settings screenStar Rauchenberger2023-04-123-0/+185
Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
// +----------------------------------------------------------------------+
// | PHP Version 4                                                        |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2004 The PHP Group                                |
// +----------------------------------------------------------------------+
// | This source file is subject to version 3.0 of the PHP license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available at through the world-wide-web at                           |
// | http://www.php.net/license/3_0.txt.                                  |
// | If you did not receive a copy of the PHP license and are unable to   |
// | obtain it through the world-wide-web, please send a note to          |
// | license@php.net so we can mail you a copy immediately.               |
// +----------------------------------------------------------------------+
// | Authors: Aidan Lister <aidan@php.net>                                |
// +----------------------------------------------------------------------+
//
// $Id: is_a.php,v 1.2 2005/11/21 10:57:23 ggiunta Exp $


/**
 * Replace function is_a()
 *
 * @category    PHP
 * @package     PHP_Compat
 * @link        http://php.net/function.is_a
 * @author      Aidan Lister <aidan@php.net>
 * @version     $Revision: 1.2 $
 * @since       PHP 4.2.0
 * @require     PHP 4.0.0 (user_error) (is_subclass_of)
 */
if (!function_exists('is_a')) {
    function is_a($object, $class)
    {
        if (!is_object($object)) {
            return false;
        }

        if (get_class($object) == strtolower($class)) {
            return true;
        } else {
            return is_subclass_of($object, $class);
        }
    }
}

?>