diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-12 19:01:17 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-12 19:01:17 +0000 |
| commit | 7e60f634b432393997ece9b35a16116f2e5433ca (patch) | |
| tree | b7f3b26652a4e3fb187c1fbd06c85c2fd17f7061 /phpBB/includes/core/system.php | |
| parent | 1106aed2f6bc7a8976109b1fab6d0bd786070563 (diff) | |
| download | forums-7e60f634b432393997ece9b35a16116f2e5433ca.tar forums-7e60f634b432393997ece9b35a16116f2e5433ca.tar.gz forums-7e60f634b432393997ece9b35a16116f2e5433ca.tar.bz2 forums-7e60f634b432393997ece9b35a16116f2e5433ca.tar.xz forums-7e60f634b432393997ece9b35a16116f2e5433ca.zip | |
add system.php
git-svn-id: file:///svn/phpbb/trunk@9253 89ea8834-ac86-4346-8a33-228a782c2dd0
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 |
