function path_admin_edit

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/path/path.admin.inc \path_admin_edit()

Page callback: Returns a form creating or editing a path alias.

Parameters

$path: An array containing the path ID, source, alias, and language code.

Return value

A form for adding or editing a URL alias.

See also

path_menu()

2 string references to 'path_admin_edit'
drupal-6.filled.database.php in drupal-7.x/modules/simpletest/tests/upgrade/drupal-6.filled.database.php
Filled installation of Drupal 6.17, for test purposes.
path_menu in drupal-7.x/modules/path/path.module
Implements hook_menu().

Archivo

drupal-7.x/modules/path/path.admin.inc, line 100
Administrative page callbacks for the path module.

Código

function path_admin_edit($path = array()) {
  if ($path) {
    drupal_set_title($path['alias']);
    $output = drupal_get_form('path_admin_form', $path);
  }
  else {
    $output = drupal_get_form('path_admin_form');
  }

  return $output;
}