. /** * This is the external API for this tool. * * @package tool_templatelibrary * @copyright 2015 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace tool_templatelibrary; require_once("$CFG->libdir/externallib.php"); use external_api; use external_function_parameters; use external_value; use external_format_value; use external_single_structure; use external_multiple_structure; use invalid_parameter_exception; /** * This is the external API for this tool. * * @copyright 2015 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class external extends external_api { /** * Returns description of list_templates() parameters. * * @return external_function_parameters */ public static function list_templates_parameters() { $component = new external_value( PARAM_COMPONENT, 'The component to search', VALUE_DEFAULT, '' ); $search = new external_value( PARAM_RAW, 'The search string', VALUE_DEFAULT, '' ); $params = array('component' => $component, 'search' => $search); return new external_function_parameters($params); } /** * Loads the list of templates. * @param string $component Limit the search to a component. * @param string $search The search string. * @return array[string] */ public static function list_templates($component, $search) { $params = self::validate_parameters(self::list_templates_parameters(), array( 'component' => $component, 'search' => $search, )); return api::list_templates($component, $search); } /** * Returns description of list_templates() result value. * * @return external_description */ public static function list_templates_returns() { return new external_multiple_structure(new external_value(PARAM_RAW, 'The template name (format is component/templatename)')); } /** * Returns description of load_canonical_template() parameters. * * @return external_function_parameters */ public static function load_canonical_template_parameters() { return new external_function_parameters( array('component' => new external_value(PARAM_COMPONENT, 'component containing the template'), 'template' => new external_value(PARAM_ALPHANUMEXT, 'name of the template')) ); } /** * Return a mustache template. * Note - this function differs from the function core_output_load_template * because it will never return a theme overridden version of a template. * * @param string $component The component that holds the template. * @param string $template The name of the template. * @return string the template */ public static function load_canonical_template($component, $template) { $params = self::validate_parameters(self::load_canonical_template_parameters(), array('component' => $component, 'template' => $template)); $component = $params['component']; $template = $params['template']; return api::load_canonical_template($component, $template); } /** * Returns description of load_canonical_template() result value. * * @return external_description */ public static function load_canonical_template_returns() { return new external_value(PARAM_RAW, 'template'); } }