| 5 path.module | path_admin_edit($pid = 0) |
| 6 path.admin.inc | path_admin_edit( |
| 7 path.admin.inc | path_admin_edit($path = array()) |
| 8 path.admin.inc | path_admin_edit($path = array()) |
Menu callback; handles pages for creating and editing URL aliases.
1 string reference to 'path_admin_edit'
File
- modules/
path/ path.module, line 77 - Enables users to rename URLs.
Code
function path_admin_edit($pid = 0) {
if ($pid) {
$alias = path_load($pid);
drupal_set_title(check_plain($alias['dst']));
$output = path_form($alias);
}
else {
$output = path_form();
}
return $output;
}
Login or register to post comments