Mercurial > hg > isophonics-drupal-site
comparison core/modules/menu_link_content/src/MenuLinkContentInterface.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children | af1871eacc83 |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
2 | 2 |
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 | 8 |
8 /** | 9 /** |
9 * Defines an interface for custom menu links. | 10 * Defines an interface for custom menu links. |
10 */ | 11 */ |
11 interface MenuLinkContentInterface extends ContentEntityInterface, EntityChangedInterface { | 12 interface MenuLinkContentInterface extends ContentEntityInterface, EntityChangedInterface, EntityPublishedInterface { |
12 | 13 |
13 /** | 14 /** |
14 * Flags this instance as being wrapped in a menu link plugin instance. | 15 * Flags this instance as being wrapped in a menu link plugin instance. |
15 */ | 16 */ |
16 public function setInsidePlugin(); | 17 public function setInsidePlugin(); |