function path_form in Drupal 5
Same name and namespace in other branches
- 4 modules/path.module \path_form()
Return a form for editing or creating an individual URL alias.
1 call to path_form()
- path_admin_edit in modules/
path/ path.module - Menu callback; handles pages for creating and editing URL aliases.
File
- modules/
path/ path.module, line 174 - Enables users to rename URLs.
Code
function path_form($edit = '') {
$form['#base'] = 'path_form';
$form['src'] = array(
'#type' => 'textfield',
'#title' => t('Existing system path'),
'#default_value' => $edit['src'],
'#maxlength' => 128,
'#size' => 45,
'#description' => t('Specify the existing path you wish to alias. For example: node/28, forum/1, taxonomy/term/1+2.'),
'#field_prefix' => url(NULL, NULL, NULL, TRUE) . (variable_get('clean_url', 0) ? '' : '?q='),
);
$form['dst'] = array(
'#type' => 'textfield',
'#default_value' => $edit['dst'],
'#maxlength' => 128,
'#size' => 45,
'#description' => t('Specify an alternative path by which this data can be accessed. For example, type "about" when writing an about page. Use a relative path and don\'t add a trailing slash or the URL alias won\'t work.'),
'#field_prefix' => url(NULL, NULL, NULL, TRUE) . (variable_get('clean_url', 0) ? '' : '?q='),
);
if ($edit['pid']) {
$form['pid'] = array(
'#type' => 'hidden',
'#value' => $edit['pid'],
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Update alias'),
);
}
else {
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Create new alias'),
);
}
return $form;
}