Avail feature updated
[ninja.git] / application / config / listview.php
blobd193a40880dfda97e98e8b0f06b87c8104de92e4
1 <?php
3 /*
4 * This defined which columns is visible in each table, as a default setting for
5 * all users in the system.
6 */
7 if( !isset( $config['columns'] ) )
8 $config['columns'] = array();
11 * The following configuration is what new users see as default for column
12 * configuration.
14 * To update and propagate business-specific custom column configuration, use
15 * the "default" section below
17 $config['columns']['hosts'] = 'default';
18 $config['columns']['services'] = 'default';
19 $config['columns']['hostgroups'] = 'default';
20 $config['columns']['servicegroups'] = 'default';
21 $config['columns']['comments'] = 'default';
22 $config['columns']['downtimes'] = 'default';
23 $config['columns']['contacts'] = 'default';
24 $config['columns']['notifications'] = 'default';
25 $config['columns']['saved_filters'] = 'default';
28 * The default section reprecents which columns should be included when using
29 * the "default" keyword in settings.
31 * Custom columns can be added here, without the need for a user to see the
32 * definition in the My Account page
34 if( !isset( $config['default'] ) )
35 $config['default'] = array();
36 if( !isset( $config['default']['columns'] ) )
37 $config['default']['columns'] = array();
39 $config['default']['columns']['hosts'] = 'all';
40 $config['default']['columns']['services'] = 'all';
41 $config['default']['columns']['hostgroups'] = 'all';
42 $config['default']['columns']['servicegroups'] = 'all';
43 $config['default']['columns']['comments'] = 'all';
44 $config['default']['columns']['downtimes'] = 'all';
45 $config['default']['columns']['contacts'] = 'all';
46 $config['default']['columns']['notifications'] = 'all';
47 $config['default']['columns']['saved_filters'] = 'all';