theme/adaptable/classes/output/external.php currently looks like:
`namespace theme_adaptable\output;
use core_external\external_api;
use core_external\external_function_parameters;
use core_external\external_multiple_structure;
use core_external\external_single_structure;
use core_external\external_value;
use core\external\output\icon_system\load_fontawesome_map;`
use external_api;
use external_function_parameters;
use external_multiple_structure;
use external_single_structure;
use external_value;
use core\external\output\icon_system\load_fontawesome_map;`
theme/adaptable/classes/output/external.php currently looks like:
`namespace theme_adaptable\output;
use core_external\external_api; use core_external\external_function_parameters; use core_external\external_multiple_structure; use core_external\external_single_structure; use core_external\external_value; use core\external\output\icon_system\load_fontawesome_map;`
where it should look like:
`namespace theme_adaptable\output;
require_once("$CFG->libdir/externallib.php"); require_once("$CFG->libdir/classes/external/output/icon_system/load_fontawesome_map.php");
use external_api; use external_function_parameters; use external_multiple_structure; use external_single_structure; use external_value; use core\external\output\icon_system\load_fontawesome_map;`
otherwise you get this:
when attemping to load the WS API Documentation