From 13851f308f57e0cda4c24f9a9a186aac912213d1 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Sun, 23 Aug 2015 15:14:08 -0700 Subject: [ticket/14123] Add descriptive help to the CLI help output PHPBB3-14123 --- phpBB/language/en/cli.php | 82 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 81 insertions(+), 1 deletion(-) (limited to 'phpBB/language/en/cli.php') diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php index 0e7dc39b95..11d45646f8 100644 --- a/phpBB/language/en/cli.php +++ b/phpBB/language/en/cli.php @@ -54,7 +54,7 @@ $lang = array_merge($lang, array( 'CLI_DESCRIPTION_DELETE_CONFIG' => 'Deletes a configuration option', 'CLI_DESCRIPTION_DISABLE_EXTENSION' => 'Disables the specified extension.', 'CLI_DESCRIPTION_ENABLE_EXTENSION' => 'Enables the specified extension.', - 'CLI_DESCRIPTION_FIND_MIGRATIONS' => 'Finds migrations that are not depended on.', + 'CLI_DESCRIPTION_FIND_MIGRATIONS' => 'Finds migrations that are not depended upon.', 'CLI_DESCRIPTION_GET_CONFIG' => 'Gets a configuration option’s value', 'CLI_DESCRIPTION_INCREMENT_CONFIG' => 'Increments a configuration option’s value', 'CLI_DESCRIPTION_LIST_EXTENSIONS' => 'Lists all extensions in the database and on the filesystem.', @@ -65,6 +65,86 @@ $lang = array_merge($lang, array( 'CLI_DESCRIPTION_SET_ATOMIC_CONFIG' => 'Sets a configuration option’s value only if the old matches the current value', 'CLI_DESCRIPTION_SET_CONFIG' => 'Sets a configuration option’s value', + 'CLI_HELP_PURGE_CACHE' => 'The %command.name% command allows you to purge the board’s cache. + + php %command.full_name% +', + 'CLI_HELP_DELETE_CONFIG' => 'The %command.name% command deletes a configuration option. The key name is required. + + php %command.full_name% config_key +', + 'CLI_HELP_GET_CONFIG' => 'The %command.name% command gets a configuration option’s value. The key name is required. + + php %command.full_name% config_key +', + 'CLI_HELP_INCREMENT_CONFIG' => 'The %command.name% command increments an integer configuration option’s value. The key name and increment amount are required. + + php %command.full_name% config_key 1 + +If the configuration option changes too frequently to be efficiently cached, use the --dynamic or -d option: + + php %command.full_name% config_key 1 --dynamic + php %command.full_name% config_key 1 -d +', + 'CLI_HELP_SET_CONFIG' => 'The %command.name% sets a configuration option’s value. The key name and value are required. + + php %command.full_name% config_key foo + +If the configuration option changes too frequently to be efficiently cached, use the --dynamic or -d option: + + php %command.full_name% config_key foo --dynamic + php %command.full_name% config_key foo -d +', + 'CLI_HELP_SET_ATOMIC_CONFIG' => 'The %command.name% command sets a configuration option’s value only if the old value matches the current value or the configuration value does not exist yet. The key name, old and new values are required. + + php %command.full_name% config_name foo bar + +If the configuration option changes too frequently to be efficiently cached, use the --dynamic or -d option: + + php %command.full_name% config_key foo bar --dynamic + php %command.full_name% config_key foo bar -d +', + 'CLI_HELP_CRON_LIST' => 'The %command.name% command prints a list of ready and unready cron jobs. + + php %command.full_name% +', + 'CLI_HELP_CRON_RUN' => 'The %command.name% command runs all ready cron tasks. + + php %command.full_name% + +Optionally you can specify a cron task name to run only the specified cron task: + + php %command.full_name% task_name +', + 'CLI_HELP_DB_MIGRATE' => 'The %command.name% command updates the database by applying available migrations. + + php %command.full_name% +', + 'CLI_HELP_FIND_MIGRATIONS' => 'The %command.name% command finds migrations that are not depended upon. + + php %command.full_name% +', + 'CLI_HELP_DISABLE_EXTENSION' => 'The %command.name% command disables the specified extension. The extension name is required. + + php %command.full_name% vendor_name/package_name +', + 'CLI_HELP_ENABLE_EXTENSION' => 'The %command.name% command enables the specified extension. The extension name is required. + + php %command.full_name% vendor_name/package_name +', + 'CLI_HELP_PURGE_EXTENSION' => 'The %command.name% command purges the specified extension. The extension name is required. + + php %command.full_name% vendor_name/package_name +', + 'CLI_HELP_LIST_EXTENSIONS' => 'The %command.name% command lists all extensions in the database and on the filesystem. + + php %command.full_name% +', + 'CLI_HELP_RECALCULATE_EMAIL_HASH' => 'The %command.name% command recalculates the user_email_hash column of the users table. + + php %command.full_name% +', + 'CLI_EXTENSION_DISABLE_FAILURE' => 'Could not disable extension %s', 'CLI_EXTENSION_DISABLE_SUCCESS' => 'Successfully disabled extension %s', 'CLI_EXTENSION_ENABLE_FAILURE' => 'Could not enable extension %s', -- cgit v1.2.1