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;
|
2011-04-14 15:43:16 +02:00
|
|
|
$setup_info[NOTIFICATION_APP]['version'] = '1.9.003';
|
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'] =
|
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';
|
|
|
|
$setup_info[NOTIFICATION_APP]['hooks'][] = 'preferences';
|
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(
|
|
|
|
'appname' => 'phpgwapi',
|
2010-09-05 17:24:34 +02:00
|
|
|
'versions' => Array('1.7','1.8','1.9')
|
2006-09-07 09:04:15 +02:00
|
|
|
);
|
|
|
|
$setup_info[NOTIFICATION_APP]['depends'][] = array(
|
|
|
|
'appname' => 'etemplate',
|
2010-09-05 17:24:34 +02:00
|
|
|
'versions' => Array('1.7','1.8','1.9')
|
2006-09-07 09:04:15 +02:00
|
|
|
);
|