function path_load in Drupal 5
Same name and namespace in other branches
- 4 modules/path.module \path_load()
- 6 modules/path/path.module \path_load()
- 7 includes/path.inc \path_load()
Fetch a specific URL alias from the database.
2 calls to path_load()
- path_admin_delete_confirm in modules/
path/ path.module - Menu callback; confirms deleting an URL alias
- path_admin_edit in modules/
path/ path.module - Menu callback; handles pages for creating and editing URL aliases.
File
- modules/
path/ path.module, line 323 - Enables users to rename URLs.
Code
function path_load($pid) {
return db_fetch_array(db_query('SELECT * FROM {url_alias} WHERE pid = %d', $pid));
}