diff options
| author | Nils Adermann <naderman@naderman.de> | 2009-06-27 20:56:49 +0000 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2009-06-27 20:56:49 +0000 |
| commit | 6273718dc5a7812b980ca45b20d123e5e0908026 (patch) | |
| tree | 1be269bf21e689f2c02a27d97ddb03a9a03a46ab /phpBB/includes/acp/info | |
| parent | 4bef644a94f6865a948951c0e946a93b93d55b21 (diff) | |
| download | forums-6273718dc5a7812b980ca45b20d123e5e0908026.tar forums-6273718dc5a7812b980ca45b20d123e5e0908026.tar.gz forums-6273718dc5a7812b980ca45b20d123e5e0908026.tar.bz2 forums-6273718dc5a7812b980ca45b20d123e5e0908026.tar.xz forums-6273718dc5a7812b980ca45b20d123e5e0908026.zip | |
acp module for submitting statistical information to phpBB
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9698 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/info')
| -rw-r--r-- | phpBB/includes/acp/info/acp_send_statistics.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/phpBB/includes/acp/info/acp_send_statistics.php b/phpBB/includes/acp/info/acp_send_statistics.php new file mode 100644 index 0000000000..33e66ecd26 --- /dev/null +++ b/phpBB/includes/acp/info/acp_send_statistics.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_send_statistics_info +{ + function module() + { + return array( + 'filename' => 'acp_send_statistics', + 'title' => 'ACP_SEND_STATISTICS', + 'version' => '1.0.0', + 'modes' => array( + 'questionnaire' => array('title' => 'ACP_SEND_STATISTICS', 'auth' => 'acl_a_server', 'cat' => array('ACP_SERVER_CONFIGURATION')), + ), + ); + } + + function install() + { + } + + function uninstall() + { + } +} + +?>
\ No newline at end of file |
