1<?php
2/* vim: set expandtab sw=4 ts=4 sts=4: */
3/**
4 * User preferences form
5 *
6 * @package PhpMyAdmin
7 */
8namespace PhpMyAdmin\Config\Forms\User;
9
10use PhpMyAdmin\Config\Forms\BaseFormList;
11
12class UserFormList extends BaseFormList
13{
14    protected static $all = array(
15        'Features',
16        'Sql',
17        'Navi',
18        'Main',
19        'Import',
20        'Export',
21    );
22    protected static $ns = '\\PhpMyAdmin\\Config\\Forms\\User\\';
23}
24