function safeword_theme in Safeword 8
Same name and namespace in other branches
- 7 safeword.module \safeword_theme()
Implementation of hook_theme().
File
- ./
safeword.module, line 15 - Provides a FieldAPI field type, widget, and several formatters for a combined human readable/machine name pair of values. Possible uses include automatic generation of editable pathauto segments, handy Views argument values, and impressing friends.
Code
function safeword_theme() {
return array(
'safeword_un_editable_path_parts' => array(
'variables' => array(
'path' => '',
),
),
);
}