diff options
Diffstat (limited to 'phpBB/includes/core/system.php')
| -rw-r--r-- | phpBB/includes/core/system.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/phpBB/includes/core/system.php b/phpBB/includes/core/system.php new file mode 100644 index 0000000000..204917856c --- /dev/null +++ b/phpBB/includes/core/system.php @@ -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();
+
+}
+
+?>
\ No newline at end of file |
