1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- define('CLI_SCRIPT', true);
- require(__DIR__.'/../../../config.php');
- require_once($CFG->libdir.'/clilib.php');
- list($options, $unrecognized) = cli_get_params(array(
- 'help' => false
- ),
- array(
- 'h' => 'help'
- ));
- $help =
- "
- Help message for colab cli script.
- Please include a list of options and associated actions.
- Please include an example of usage.
- ";
- if ($unrecognized) {
- $unrecognized = implode("\n\t", $unrecognized);
- cli_error(get_string('cliunknownoption', 'admin', $unrecognized);
- }
- if ($options['help']) {
- cli_writeln($help);
- die();
- }
|