diff options
| author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2012-09-26 21:50:21 -0500 |
|---|---|---|
| committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2012-09-26 21:50:21 -0500 |
| commit | b052741fcb0b3cab4317a759ec935518bef7c73b (patch) | |
| tree | 0891ce979c957034c0dbc209856371387a4071b2 /phpBB/includes/ucp/info | |
| parent | 3242ce0d3aa395b2c603e9172dfb17bcc5f081de (diff) | |
| download | forums-b052741fcb0b3cab4317a759ec935518bef7c73b.tar forums-b052741fcb0b3cab4317a759ec935518bef7c73b.tar.gz forums-b052741fcb0b3cab4317a759ec935518bef7c73b.tar.bz2 forums-b052741fcb0b3cab4317a759ec935518bef7c73b.tar.xz forums-b052741fcb0b3cab4317a759ec935518bef7c73b.zip | |
[ticket/11103] UCP base files for notification options
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/ucp/info')
| -rw-r--r-- | phpBB/includes/ucp/info/ucp_notifications.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/info/ucp_notifications.php b/phpBB/includes/ucp/info/ucp_notifications.php new file mode 100644 index 0000000000..f1e6bf65b8 --- /dev/null +++ b/phpBB/includes/ucp/info/ucp_notifications.php @@ -0,0 +1,34 @@ +<?php +/** +* +* @package notifications +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @package module_install +*/ +class ucp_notifications_info +{ + function module() + { + return array( + 'filename' => 'ucp_notifications', + 'title' => 'UCP_NOTIFICATIONS', + 'version' => '1.0.0', + 'modes' => array( + 'notification_options' => array('title' => 'UCP_NOTIFICATION_OPTIONS', 'auth' => '', 'cat' => array('UCP_MAIN')), + ), + ); + } + + function install() + { + } + + function uninstall() + { + } +} |
