PluginProbe
GetResponse Forms by Optin Cat / 1.3.5
GetResponse Forms by Optin Cat v1.3.5
1.3.4 1.3.5 1.3.6 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 2.0.0 All 36 releases
getresponse / includes / classes / Mobile-Detect / tests / UA_List.inc.php

UA_List.inc.php in GetResponse Forms by Optin Cat 1.3.5, at includes/classes/Mobile-Detect/tests/UA_List.inc.php

28 lines 689 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @license MIT License https://github.com/serbanghita/Mobile-Detect/blob/master/LICENSE.txt
4 * @link http://mobiledetect.net
5 *
6 * Compile the providers list.
7 * The providers list is updated weekly.
8 * You can contribute by adding new user agents and tests.
9 */
10
11 // Setup.
12 $includeBasePath = dirname(__FILE__) . '/providers/vendors';
13 $list = array();
14
15 // Scan.
16 $dir = new DirectoryIterator($includeBasePath);
17 foreach ($dir as $fileInfo) {
18 if ($fileInfo->isDot()) {
19 continue;
20 }
21 $listNew = include $includeBasePath . '/' . $fileInfo->getFilename();
22 if (is_array($listNew)) {
23 $list = array_merge($list, $listNew);
24 }
25 }
26
27 return $list;
28