diff options
Diffstat (limited to 'phpBB/includes/ucp/info/ucp_zebra.php')
-rw-r--r-- | phpBB/includes/ucp/info/ucp_zebra.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/info/ucp_zebra.php b/phpBB/includes/ucp/info/ucp_zebra.php new file mode 100644 index 0000000000..6c55f0fb5e --- /dev/null +++ b/phpBB/includes/ucp/info/ucp_zebra.php @@ -0,0 +1,38 @@ +<?php +/** +* +* @package ucp +* @version $Id$ +* @copyright (c) 2005 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +/** +* @package module_install +*/ +class ucp_zebra_info +{ + function module() + { + return array( + 'filename' => 'ucp_zebra', + 'title' => 'UCP_ZEBRA', + 'version' => '1.0.0', + 'modes' => array( + 'friends' => array('title' => 'UCP_ZEBRA_FRIENDS', 'auth' => ''), + 'foes' => array('title' => 'UCP_ZEBRA_FOES', 'auth' => ''), + ), + ); + } + + function install() + { + } + + function uninstall() + { + } +} + +?>
\ No newline at end of file |