mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
add system.php
git-svn-id: file:///svn/phpbb/trunk@9253 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
33
phpBB/includes/core/system.php
Normal file
33
phpBB/includes/core/system.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package core
|
||||
* @version $Id: core.php 9200 2008-12-15 18:06:53Z acydburn $
|
||||
* @copyright (c) 2008 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit();
|
||||
}
|
||||
|
||||
/**
|
||||
* System-specific methods. For example chmod(), unlink()...
|
||||
*
|
||||
* @package core
|
||||
*/
|
||||
class phpbb_system extends phpbb_plugin_support
|
||||
{
|
||||
private $data = array();
|
||||
|
||||
public $phpbb_required = array();
|
||||
public $phpbb_optional = array();
|
||||
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user