diff options
author | Jakob Sack <kde@jakobsack.de> | 2011-03-13 17:25:34 +0100 |
---|---|---|
committer | Jakob Sack <kde@jakobsack.de> | 2011-03-13 17:25:34 +0100 |
commit | a3070405d94621d01cc97ca10cc9cdf220e14064 (patch) | |
tree | 0dc39fc6e2a62cefaa954c92f5b7144ffc533872 /lib/config.php | |
parent | 59847bb90161badcd17397a147bd0a9ddddcb376 (diff) | |
download | nextcloud-server-a3070405d94621d01cc97ca10cc9cdf220e14064.tar.gz nextcloud-server-a3070405d94621d01cc97ca10cc9cdf220e14064.zip |
OC_HELPER, OC_LOG and OC_TEMPLATE prepared for refactoring
Diffstat (limited to 'lib/config.php')
-rw-r--r-- | lib/config.php | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/lib/config.php b/lib/config.php index 637497734ca..3e660a5fb55 100644 --- a/lib/config.php +++ b/lib/config.php @@ -20,6 +20,19 @@ * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ +/* + * + * An example of config.php + * + * <?php + * $CONFIG = array( + * "database" => "mysql", + * "firstrun" => false, + * "pi" => 3.14 + * ); + * ?> + * + */ /** * This class is responsible for reading and writing config.php, the very basic @@ -86,5 +99,3 @@ class OC_CONFIG{ } } ?> - - |