1 path.module | path_theme() |
Implements hook_theme().
File
- core/
modules/ path/ path.module, line 180 - Enables users to customize URLs and provide automatic URL alias patterns.
Code
function path_theme() {
$base = array(
'file' => 'path.admin.inc',
);
return array(
'path_bulk_update_form' => array(
'render element' => 'form',
) + $base,
);
}