egroupware/notifications/setup/setup.inc.php

43 lines
1.4 KiB
PHP
Raw Normal View History

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>
2006-09-25 12:20:46 +02:00
* @version $Id$
2006-09-07 09:04:15 +02:00
*/
if (!defined('NOTIFICATION_APP'))
{
define('NOTIFICATION_APP','notifications');
}
$setup_info[NOTIFICATION_APP]['name'] = NOTIFICATION_APP;
2016-05-06 11:19:36 +02:00
$setup_info[NOTIFICATION_APP]['version'] = '16.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(
2008-10-07 09:21:23 +02:00
'name' => 'eGroupware coreteam',
'email' => 'egroupware-developers@lists.sf.net'
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'] =
'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';
$setup_info[NOTIFICATION_APP]['hooks'][] = 'settings';
$setup_info[NOTIFICATION_APP]['hooks'][] = 'admin';
$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',
'versions' => Array('16.1')
2006-09-07 09:04:15 +02:00
);