From: Stig Bakken Date: Tue, 28 May 2002 00:01:19 +0000 (+0000) Subject: * added data_dir and test_dir X-Git-Tag: NEW_UI_API_BP~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=245ca5aa7c0f1daec1a3b71166eb3c3f38933461;p=php * added data_dir and test_dir --- diff --git a/pear/PEAR/Config.php b/pear/PEAR/Config.php index 6bdbd618a7..146ceca3e9 100644 --- a/pear/PEAR/Config.php +++ b/pear/PEAR/Config.php @@ -113,6 +113,16 @@ class PEAR_Config extends PEAR 'default' => PEAR_CONFIG_DEFAULT_DOCDIR, 'doc' => 'directory where documentation is installed', ), + 'data_dir' => array( + 'type' => 'directory', + 'default' => PEAR_CONFIG_DEFAULT_DATADIR, + 'doc' => 'directory where data files are installed', + ), + 'test_dir' => array( + 'type' => 'directory', + 'default' => PEAR_CONFIG_DEFAULT_TESTDIR, + 'doc' => 'directory where regression tests are installed', + ), 'bin_dir' => array( 'type' => 'directory', 'default' => PEAR_CONFIG_DEFAULT_BINDIR,