From 44ea55cef41d20f70e73460c0495b40245fe738a Mon Sep 17 00:00:00 2001 From: zorloc Date: Tue, 28 Jan 2003 07:32:24 +0000 Subject: [PATCH] This file holds all of the config settings for the constants, variables, and arrays that can be customized/defined. I have done a template and one constant (WIKI_NAME). More to follow. git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@2531 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- config/Values.php | 72 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 config/Values.php diff --git a/config/Values.php b/config/Values.php new file mode 100644 index 000000000..97a1203e1 --- /dev/null +++ b/config/Values.php @@ -0,0 +1,72 @@ + '', + 'name' => '', + 'defaultValue' => , + 'description' => array( + 'short' => '', + 'full' => '' + ), + 'validator' => array( + 'type' => '', + ) +); +*/ + +/** +* This defines the Constant that holds the name of the wiki +*/ +$values[] = array( + 'type' => 'Constant', + 'name' => 'WIKI_NAME', + 'defaultValue' => 'PhpWiki', + 'description' => array( + 'short' => 'Name of your Wiki.', + 'full' => 'This can be any string, but it should be short and informative' + ), + 'validator' => array( + 'type' => 'String' + ) +); + +//$Log: not supported by cvs2svn $ + +// Local Variables: +// mode: php +// tab-width: 8 +// c-basic-offset: 4 +// c-hanging-comment-ender-p: nil +// indent-tabs-mode: nil +// End: + +?> \ No newline at end of file -- 2.45.0