egroupware/pixelegg/setup/setup.inc.php

38 lines
1.5 KiB
PHP
Raw Normal View History

2013-11-11 19:45:33 +01:00
<?php
/**
2016-10-08 14:08:53 +02:00
* EGroupware: Standard template
2013-11-11 19:45:33 +01:00
*
* @link http://www.egroupware.org
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @author Stefan Reinhard <stefan.reinhard@pixelegg.de>
* @package pixelegg
*/
$GLOBALS['egw_info']['template']['pixelegg']['name'] = 'pixelegg';
2016-10-08 14:08:53 +02:00
$GLOBALS['egw_info']['template']['pixelegg']['title'] = 'Standard ';
2023-02-28 08:49:36 +01:00
$GLOBALS['egw_info']['template']['pixelegg']['version'] = '23.1';
2013-11-11 19:45:33 +01:00
$GLOBALS['egw_info']['template']['pixelegg']['author'] = array(
2016-10-08 14:08:53 +02:00
array('name' => 'EGroupware GmbH', 'url' => 'http://www.egroupware.org/'),
2013-11-11 19:45:33 +01:00
array('name' => 'Pixelegg Informationsdesign', 'url' => 'http://www.pixelegg.de/'),
);
2014-06-25 20:34:30 +02:00
$GLOBALS['egw_info']['template']['pixelegg']['license'] = 'GPL';
2013-11-11 19:45:33 +01:00
$GLOBALS['egw_info']['template']['pixelegg']['icon'] = "pixelegg/images/logo.png";
$GLOBALS['egw_info']['template']['pixelegg']['maintainer'] = array(
2016-10-08 14:08:53 +02:00
array('name' => 'EGroupware GmbH', 'url' => 'http://www.egroupware.org/')
2013-11-11 19:45:33 +01:00
);
2019-07-16 10:46:59 +02:00
$GLOBALS['egw_info']['template']['pixelegg']['description'] = "Standard template set of EGroupware.";
2013-11-11 19:45:33 +01:00
$GLOBALS['egw_info']['template']['pixelegg']['windowed'] = true;
// specify (different) labels for default themes
$GLOBALS['egw_info']['template']['pixelegg']['themes'] = array(
'pixelegg' => 'Standard',
'monochrome' => 'Monochrome',
'mobile' => 'Compact',
);
// Dependencies for this template to work
$GLOBALS['egw_info']['template']['pixelegg']['depends'][] = array(
'appname' => 'api',
2023-02-28 08:49:36 +01:00
'versions' => Array('23.1')
);