mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-26 04:52:36 +01:00
add system.php
git-svn-id: file:///svn/phpbb/trunk@9253 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
1106aed2f6
commit
7e60f634b4
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();
|
||||
|
||||
}
|
||||
|
||||
?>
|
Loading…
x
Reference in New Issue
Block a user