Mercurial > hg > isophonics-drupal-site
comparison core/modules/menu_link_content/src/MenuLinkContentInterface.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 129ea1e6d783 |
children |
comparison
equal
deleted
inserted
replaced
17:129ea1e6d783 | 18:af1871eacc83 |
---|---|
3 namespace Drupal\menu_link_content; | 3 namespace Drupal\menu_link_content; |
4 | 4 |
5 use Drupal\Core\Entity\EntityChangedInterface; | 5 use Drupal\Core\Entity\EntityChangedInterface; |
6 use Drupal\Core\Entity\ContentEntityInterface; | 6 use Drupal\Core\Entity\ContentEntityInterface; |
7 use Drupal\Core\Entity\EntityPublishedInterface; | 7 use Drupal\Core\Entity\EntityPublishedInterface; |
8 use Drupal\Core\Entity\RevisionLogInterface; | |
8 | 9 |
9 /** | 10 /** |
10 * Defines an interface for custom menu links. | 11 * Defines an interface for custom menu links. |
11 */ | 12 */ |
12 interface MenuLinkContentInterface extends ContentEntityInterface, EntityChangedInterface, EntityPublishedInterface { | 13 interface MenuLinkContentInterface extends ContentEntityInterface, EntityChangedInterface, EntityPublishedInterface, RevisionLogInterface { |
13 | 14 |
14 /** | 15 /** |
15 * Flags this instance as being wrapped in a menu link plugin instance. | 16 * Flags this instance as being wrapped in a menu link plugin instance. |
16 */ | 17 */ |
17 public function setInsidePlugin(); | 18 public function setInsidePlugin(); |