diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-09-02 13:39:21 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-09-02 13:39:21 +0000 |
commit | f3b545bb593b61611883084dc91d279b93d8e21c (patch) | |
tree | 100d8e58517897e4ad65a634235c5e6e534967ed /phpBB/includes/acp/info/acp_update.php | |
parent | 49a94efe1f9abb06fbdd0422606b02cd17ffe054 (diff) | |
download | forums-f3b545bb593b61611883084dc91d279b93d8e21c.tar forums-f3b545bb593b61611883084dc91d279b93d8e21c.tar.gz forums-f3b545bb593b61611883084dc91d279b93d8e21c.tar.bz2 forums-f3b545bb593b61611883084dc91d279b93d8e21c.tar.xz forums-f3b545bb593b61611883084dc91d279b93d8e21c.zip |
add version check to acp. Now no longer directly displayed at the acp index but accessible through the System tab and viewable by any admin (no special permisison needed).
git-svn-id: file:///svn/phpbb/trunk@6347 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/info/acp_update.php')
-rw-r--r-- | phpBB/includes/acp/info/acp_update.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/phpBB/includes/acp/info/acp_update.php b/phpBB/includes/acp/info/acp_update.php new file mode 100644 index 0000000000..014d67ff2b --- /dev/null +++ b/phpBB/includes/acp/info/acp_update.php @@ -0,0 +1,37 @@ +<?php +/** +* +* @package acp +* @version $Id$ +* @copyright (c) 2005 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +/** +* @package module_install +*/ +class acp_update_info +{ + function module() + { + return array( + 'filename' => 'acp_update', + 'title' => 'ACP_UPDATE', + 'version' => '1.0.0', + 'modes' => array( + 'version_check' => array('title' => 'ACP_VERSION_CHECK', 'auth' => 'acl_a_', 'cat' => array('ACP_AUTOMATION')), + ), + ); + } + + function install() + { + } + + function uninstall() + { + } +} + +?>
\ No newline at end of file |