2006-09-07 09:04:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2010-09-05 17:24:34 +02:00
|
|
|
* EGroupware - Notifications
|
2006-09-07 09:04:15 +02:00
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package notifications
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Cornelius Weiss <nelius@cwtech.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('NOTIFICATION_APP'))
|
|
|
|
{
|
|
|
|
define('NOTIFICATION_APP','notifications');
|
|
|
|
}
|
|
|
|
|
|
|
|
$setup_info[NOTIFICATION_APP]['name'] = NOTIFICATION_APP;
|
2019-07-16 10:46:59 +02:00
|
|
|
$setup_info[NOTIFICATION_APP]['version'] = '19.1';
|
2006-09-07 09:04:15 +02:00
|
|
|
$setup_info[NOTIFICATION_APP]['app_order'] = 1;
|
|
|
|
$setup_info[NOTIFICATION_APP]['tables'] = array('egw_notificationpopup');
|
|
|
|
$setup_info[NOTIFICATION_APP]['enable'] = 2;
|
|
|
|
|
2008-10-07 09:21:23 +02:00
|
|
|
$setup_info[NOTIFICATION_APP]['author'] = 'Cornelius Weiss';
|
2006-09-07 09:04:15 +02:00
|
|
|
$setup_info[NOTIFICATION_APP]['maintainer'] = array(
|
2017-10-22 12:56:58 +02:00
|
|
|
'name' => 'EGroupware GmbH',
|
|
|
|
'email' => 'info@egroupware.org'
|
2006-09-07 09:04:15 +02:00
|
|
|
);
|
|
|
|
$setup_info[NOTIFICATION_APP]['license'] = 'GPL';
|
2008-10-07 09:21:23 +02:00
|
|
|
$setup_info[NOTIFICATION_APP]['description'] =
|
2008-01-30 19:58:00 +01:00
|
|
|
'Instant notification of users via various channels.';
|
2006-09-07 09:04:15 +02:00
|
|
|
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
|
|
$setup_info[NOTIFICATION_APP]['hooks'][] = 'after_navbar';
|
2007-11-22 09:29:16 +01:00
|
|
|
$setup_info[NOTIFICATION_APP]['hooks'][] = 'settings';
|
|
|
|
$setup_info[NOTIFICATION_APP]['hooks'][] = 'admin';
|
2011-04-13 19:51:02 +02:00
|
|
|
$setup_info[NOTIFICATION_APP]['hooks']['deleteaccount'] = 'notifications.notifications.deleteaccount';
|
2006-09-07 09:04:15 +02:00
|
|
|
|
|
|
|
/* Dependencies for this app to work */
|
|
|
|
$setup_info[NOTIFICATION_APP]['depends'][] = array(
|
2016-05-06 11:19:36 +02:00
|
|
|
'appname' => 'api',
|
2019-07-16 10:46:59 +02:00
|
|
|
'versions' => Array('19.1')
|
2006-09-07 09:04:15 +02:00
|
|
|
);
|