mirror of
https://github.com/moodle/moodle.git
synced 2025-03-13 20:26:32 +01:00
MDL-56673 templatelibrary: return false when core template doesn't exist
This commit is contained in:
parent
577bd70d38
commit
840ba76c0c
@ -111,7 +111,7 @@ class api {
|
||||
*
|
||||
* @param string $component The component that holds the template.
|
||||
* @param string $template The name of the template.
|
||||
* @return string the template
|
||||
* @return string the template or false if template doesn't exist.
|
||||
*/
|
||||
public static function load_canonical_template($component, $template) {
|
||||
// Get the list of possible template directories.
|
||||
@ -133,7 +133,8 @@ class api {
|
||||
}
|
||||
|
||||
if ($filename === false) {
|
||||
throw new moodle_exception('filenotfound', 'error');
|
||||
// There are occasions where we don't have a core template.
|
||||
return false;
|
||||
}
|
||||
|
||||
$templatestr = file_get_contents($filename);
|
||||
|
@ -107,7 +107,7 @@ class external extends external_api {
|
||||
*
|
||||
* @param string $component The component that holds the template.
|
||||
* @param string $template The name of the template.
|
||||
* @return string the template
|
||||
* @return string the template, false if template doesn't exist.
|
||||
*/
|
||||
public static function load_canonical_template($component, $template) {
|
||||
$params = self::validate_parameters(self::load_canonical_template_parameters(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user