From 02ee7f17e8b634a9d0e195cce212d838eaaefe9f Mon Sep 17 00:00:00 2001 From: Treer Date: Mon, 25 Apr 2016 19:30:37 +1000 Subject: add commandline help to util/pconfig --- util/pconfig | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'util') diff --git a/util/pconfig b/util/pconfig index 038fa74c3..802590f7a 100755 --- a/util/pconfig +++ b/util/pconfig @@ -8,6 +8,40 @@ require_once('include/zot.php'); cli_startup(); +$helpArgs = getopt('h', array('help')); +if (count($helpArgs) === 1) { + echo <<<'EndOfOutput' +Gets, sets, or lists personal (per channel) configuration settings. + +Usage: util/pconfig + util/pconfig + util/pconfig + util/pconfig + + util/pconfig + Displays all of the the channel's config entries + + util/pconfig + Displays all of the channel's config entries for the specified family + (system, database, etc) + + util/pconfig + Displays single config entry for the specified family and key + + util/pconfig + Set config entry for specified family and key to value and display result + +Notes: + For site-wide configuration settings, use util/config + + Details for configuration options can be found at: + +EndOfOutput; + echo ' ' . App::get_baseurl() . '/help/hidden_configs' . PHP_EOL . PHP_EOL; + return; +} + + if($argc > 4) { set_pconfig($argv[1],$argv[2],$argv[3],$argv[4]); build_sync_packet($argv[1]); -- cgit v1.2.3