1 path.api.php | hook_path_insert($path) |
Respond to a path being inserted.
Parameters
$path: An associative array containing the following keys:
- source: The internal system path.
- alias: The URL alias.
- pid: Unique URL alias identifier.
- langcode: The language code of the alias.
See also
Related topics
File
- core/
modules/ path/ path.api.php, line 51 - Hooks provided by the Path module.
Code
function hook_path_insert($path) {
db_insert('mytable')
->fields(array(
'alias' => $path['alias'],
'pid' => $path['pid'],
))
->execute();
}