. /** * CLI script for colab. * * @package colab * @subpackage cli * @copyright 2020 Your Name * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define('CLI_SCRIPT', true); require(__DIR__.'/../../../config.php'); require_once($CFG->libdir.'/clilib.php'); // Get the cli options. 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(); }