18 lines
623 B
PHP
18 lines
623 B
PHP
<?php
|
|
|
|
define('PLUGIN_INTRANET_USER_DEFAULT_ENABLE', false);
|
|
|
|
define('PLUGIN_INTRANET_BUTTON_TITLE', 'Kopano.io');
|
|
define('PLUGIN_INTRANET_URL', 'https://kopano.io/');
|
|
define('PLUGIN_INTRANET_AUTOSTART', false);
|
|
define('PLUGIN_INTRANET_ICON', 'resources/icons/icon_default.png');
|
|
|
|
|
|
// More buttons can be added by adding a number as follows
|
|
// Note: Numbers must start with 1 and be sequential
|
|
define('PLUGIN_INTRANET_BUTTON_TITLE_1', 'Kopano.com');
|
|
define('PLUGIN_INTRANET_URL_1', 'https://kopano.com/');
|
|
define('PLUGIN_INTRANET_AUTOSTART_1', false);
|
|
define('PLUGIN_INTRANET_ICON_1', 'resources/icons/icon_default.png');
|
|
|