Parsed: 112680

    function __construct( $time )
    {
        // $time can be a PHP timestamp or an ISO one
        if (is_numeric($time)) {
            $this->IXR_Date::parseTimestamp($time);
        } else {
            $this->IXR_Date::parseIso($time);
        }
    }