Lines Matching refs:version

21  * @version 2.8.33
28 * @deprecated since version 2.6.9
35 * @deprecated since version 2.6.9
40 * A frequently used regular expression to extract version #s.
42 * @deprecated since version 2.6.9
62 * Stores the version number of the current release.
67 * A type for the version() method indicating a string return value.
72 * A type for the version() method indicating a float return value.
118 * @deprecated since version 2.6.9
689 * Get the current script version.
691 * so people can check on what version they are testing
694 * @return string The version number in semantic version format.
884 * @deprecated since version 2.6.9
965 * @deprecated since version 2.6.9
992 * @deprecated since version 2.6.9
1017 * @deprecated since version 2.6.9
1274 * Prepare the version number.
1278 * @param string $ver The string version, like "2.6.21.2152";
1295 * Check the version of the given property in the User-Agent.
1305 * @return string|float The version of the property we are trying to extract.
1307 public function version($propertyName, $type = self::VERSION_TYPE_STRING)
1331 // Identify and extract the version.
1335 $version = ($type == self::VERSION_TYPE_FLOAT ? $this->prepareVersionNo($match[1]) : $match[1]);
1337 return $version;
1358 $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT) >= 4.3 ||
1359 $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT) >= 4.3 ||
1360 $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT) >= 4.3 ||
1366 ( $this->version('Android', self::VERSION_TYPE_FLOAT)>2.1 && $this->is('Webkit') ) ||
1369 $this->version('Windows Phone OS', self::VERSION_TYPE_FLOAT) >= 7.5 ||
1372 $this->is('BlackBerry') && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) >= 6.0 ||
1377 ( $this->version('webOS', self::VERSION_TYPE_FLOAT) >= 1.4 && $this->match('Palm|Pre|Pixi') ) ||
1382 ( $this->is('Firefox') && $this->version('Firefox', self::VERSION_TYPE_FLOAT) >= 18 ) ||
1385 ( $this->is('Chrome') && $this->is('AndroidOS') && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 4.0 ) ||
1388 ( $this->is('Skyfire') && $this->version('Skyfire', self::VERSION_TYPE_FLOAT) >= 4.1 && $this->is('AndroidOS') && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 ) ||
1391 ( $this->is('Opera') && $this->version('Opera Mobi', self::VERSION_TYPE_FLOAT) >= 11.5 && $this->is('AndroidOS') ) ||
1401 $this->is('Dolfin') && $this->version('Bada', self::VERSION_TYPE_FLOAT) >= 2.0 ||
1404 ( ($this->is('UC Browser') || $this->is('Dolfin')) && $this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 ) ||
1408 $this->is('Kindle') && $this->version('Kindle', self::VERSION_TYPE_FLOAT) >= 3.0 ) ||
1414 $this->version('Chrome', self::VERSION_TYPE_FLOAT) >= 16 && !$isMobile ||
1417 $this->version('Safari', self::VERSION_TYPE_FLOAT) >= 5.0 && !$isMobile ||
1420 $this->version('Firefox', self::VERSION_TYPE_FLOAT) >= 10.0 && !$isMobile ||
1423 $this->version('IE', self::VERSION_TYPE_FLOAT) >= 7.0 && !$isMobile ||
1426 $this->version('Opera', self::VERSION_TYPE_FLOAT) >= 10 && !$isMobile
1432 $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT)<4.3 ||
1433 $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT)<4.3 ||
1434 $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT)<4.3 ||
1437 $this->is('Blackberry') && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) >= 5 && $this->version('BlackBerry', self::VERSION_TYPE_FLOAT)<6 ||
1440 ($this->version('Opera Mini', self::VERSION_TYPE_FLOAT) >= 5.0 && $this->version('Opera Mini', self::VERSION_TYPE_FLOAT) <= 7.0 &&
1441 ($this->version('Android', self::VERSION_TYPE_FLOAT) >= 2.3 || $this->is('iOS')) ) ||
1447 $this->version('Opera Mobi', self::VERSION_TYPE_FLOAT) >= 11 && $this->is('SymbianOS')
1454 $this->version('BlackBerry', self::VERSION_TYPE_FLOAT) <= 5.0 ||
1456 $this->match('MSIEMobile|Windows CE.*Mobile') || $this->version('Windows Mobile', self::VERSION_TYPE_FLOAT) <= 5.2 ||
1459 $this->is('iOS') && $this->version('iPad', self::VERSION_TYPE_FLOAT) <= 3.2 ||
1460 $this->is('iOS') && $this->version('iPhone', self::VERSION_TYPE_FLOAT) <= 3.2 ||
1461 $this->is('iOS') && $this->version('iPod', self::VERSION_TYPE_FLOAT) <= 3.2 ||
1464 $this->version('IE', self::VERSION_TYPE_FLOAT) <= 7.0 && !$isMobile