function node_convert_template_load in Node Convert 7
This is a wildcard loader for the menu item for template editing.
Parameters
$id:
Return value
array|int
File
- ./
node_convert.module, line 147
Code
function node_convert_template_load($id) {
$template = node_convert_load_template($id);
if (empty($template)) {
return MENU_NOT_FOUND;
}
return $template;
}