Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
zendframework1
library
Zend
Http
UserAgent
Offline.php
Go to the documentation of this file.
1
<?php
22
#require_once 'Zend/Http/UserAgent/Desktop.php';
23
33
class
Zend_Http_UserAgent_Offline
extends
Zend_Http_UserAgent_Desktop
34
{
40
protected
static
$_uaSignatures
= array(
41
'wget'
,
42
'webzip'
,
43
'webcopier'
,
44
'downloader'
,
45
'superbot'
,
46
'offline'
,
47
);
48
56
public
static
function
match
($userAgent, $server)
57
{
58
return
self::_matchAgentAgainstSignatures
($userAgent, self::$_uaSignatures);
59
}
60
66
public
function
getType
()
67
{
68
return
'offline'
;
69
}
70
}
Zend_Http_UserAgent_Desktop
Definition:
Desktop.php:32
Zend_Http_UserAgent_Offline\match
static match($userAgent, $server)
Definition:
Offline.php:56
Zend_Http_UserAgent_Offline\getType
getType()
Definition:
Offline.php:66
Zend_Http_UserAgent_AbstractDevice\_matchAgentAgainstSignatures
static _matchAgentAgainstSignatures($userAgent, $signatures)
Definition:
AbstractDevice.php:984
Zend_Http_UserAgent_Offline
Definition:
Offline.php:33
Zend_Http_UserAgent_Offline\$_uaSignatures
static $_uaSignatures
Definition:
Offline.php:40