Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / path / path.api.php
index df20b95e90602b6b572a87b8c15f52ec5972cca1..6a69f355d9a07bf4ba5d4777414d16eaa3bc043d 100644 (file)
@@ -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')