# getresponse/1.3.5/includes/classes/Mobile-Detect/tests/UA_List.inc.php

GetResponse Forms by Optin Cat, version 1.3.5. 28 lines.

- Page: https://pluginprobe.com/plugins/getresponse/1.3.5/code/includes/classes/Mobile-Detect/tests/UA_List.inc.php
- Raw: https://pluginprobe.com/plugins/getresponse/1.3.5/raw/includes/classes/Mobile-Detect/tests/UA_List.inc.php
- Modified: 2015-06-12T09:52:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/getresponse/1.3.5/code/includes/classes/Mobile-Detect/tests/UA_List.inc.php#L10-L20`.

```php
<?php
/**
 * @license     MIT License https://github.com/serbanghita/Mobile-Detect/blob/master/LICENSE.txt
 * @link        http://mobiledetect.net
 *
 * Compile the providers list.
 * The providers list is updated weekly.
 * You can contribute by adding new user agents and tests.
 */

// Setup.
$includeBasePath = dirname(__FILE__) . '/providers/vendors';
$list = array();

// Scan.
$dir = new DirectoryIterator($includeBasePath);
foreach ($dir as $fileInfo) {
    if ($fileInfo->isDot()) {
        continue;
    }
    $listNew = include $includeBasePath . '/' . $fileInfo->getFilename();
    if (is_array($listNew)) {
        $list = array_merge($list, $listNew);
    }
}

return $list;

```
