Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-03-13 19:25:34 +0300
committerJakob Sack <kde@jakobsack.de>2011-03-13 19:25:34 +0300
commita3070405d94621d01cc97ca10cc9cdf220e14064 (patch)
tree0dc39fc6e2a62cefaa954c92f5b7144ffc533872 /lib/config.php
parent59847bb90161badcd17397a147bd0a9ddddcb376 (diff)
OC_HELPER, OC_LOG and OC_TEMPLATE prepared for refactoring
Diffstat (limited to 'lib/config.php')
-rw-r--r--lib/config.php15
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{
}
}
?>
-
-