ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
module_discopower.php
Go to the documentation of this file.
1<?php
2/*
3 * Configuration for the DiscoPower module.
4 */
5
6$config = array (
7
8 // Which tab should be set as default. 0 is the first tab
9 'defaulttab' => 0,
10
11 /*
12 * List a set of tags (Tabs) that should be listed in a specific order.
13 * All other available tabs will be listed after the ones specified below.
14 */
15 'taborder' => array('norway'),
16 /*
17 * the 'tab' parameter allows you to limit the tabs to a specific list. (excluding unlisted tags)
18 *
19 * 'tabs' => array('norway', 'finland'),
20 */
21
29 /*
30 * The domain to use for common domain cookie support.
31 * This must be a parent domain of the domain hosting the discovery service.
32 *
33 * If this is NULL (the default), common domain cookie support will be disabled.
34 */
35 'cdc.domain' => NULL,
36
37 /*
38 * The lifetime of the common domain cookie, in seconds.
39 *
40 * If this is NULL (the default), the common domain cookie will be deleted when the browser closes.
41 *
42 * Example: 'cdc.lifetime' => 180*24*60*60, // 180 days
43 */
44 'cdc.lifetime' => NULL,
45
46);
An exception for terminatinating execution or to throw for unit testing.