- path_admin_delete_confirm in drupal/modules/path/path.module
- Menu callback; confirms deleting an URL alias
- path_admin_edit in drupal/modules/path/path.module
- Menu callback; handles pages for creating and editing URL aliases.
path_load($pid)path_load($conditions)Fetch a specific URL alias from the database.
drupal/modules/path/path.module, line 323
<?php
function path_load($pid) {
return db_fetch_array(db_query('SELECT * FROM {url_alias} WHERE pid = %d', $pid));
}
?>