updated core from 8.4 to 8.5 : bug with login_destination
This commit is contained in:
@@ -15,9 +15,9 @@
|
||||
*
|
||||
* @param array $path
|
||||
* The array structure is identical to that of the return value of
|
||||
* \Drupal\Core\Path\PathInterface::save().
|
||||
* \Drupal\Core\Path\AliasStorageInterface::save().
|
||||
*
|
||||
* @see \Drupal\Core\Path\PathInterface::save()
|
||||
* @see \Drupal\Core\Path\AliasStorageInterface::save()
|
||||
*/
|
||||
function hook_path_insert($path) {
|
||||
db_insert('mytable')
|
||||
@@ -33,9 +33,9 @@ function hook_path_insert($path) {
|
||||
*
|
||||
* @param array $path
|
||||
* The array structure is identical to that of the return value of
|
||||
* \Drupal\Core\Path\PathInterface::save().
|
||||
* \Drupal\Core\Path\AliasStorageInterface::save().
|
||||
*
|
||||
* @see \Drupal\Core\Path\PathInterface::save()
|
||||
* @see \Drupal\Core\Path\AliasStorageInterface::save()
|
||||
*/
|
||||
function hook_path_update($path) {
|
||||
if ($path['alias'] != $path['original']['alias']) {
|
||||
@@ -51,9 +51,9 @@ function hook_path_update($path) {
|
||||
*
|
||||
* @param array $path
|
||||
* The array structure is identical to that of the return value of
|
||||
* \Drupal\Core\Path\PathInterface::save().
|
||||
* \Drupal\Core\Path\AliasStorageInterface::save().
|
||||
*
|
||||
* @see \Drupal\Core\Path\PathInterface::delete()
|
||||
* @see \Drupal\Core\Path\AliasStorageInterface::delete()
|
||||
*/
|
||||
function hook_path_delete($path) {
|
||||
db_delete('mytable')
|
||||
|
||||
Reference in New Issue
Block a user