Mercurial > hg > isophonics-drupal-site
comparison core/modules/field/src/FieldConfigInterface.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?php | |
2 | |
3 namespace Drupal\field; | |
4 | |
5 use Drupal\Core\Config\Entity\ConfigEntityInterface; | |
6 use Drupal\Core\Field\FieldDefinitionInterface; | |
7 | |
8 /** | |
9 * Provides an interface defining a field entity. | |
10 */ | |
11 interface FieldConfigInterface extends ConfigEntityInterface, FieldDefinitionInterface { | |
12 | |
13 /** | |
14 * Gets the deleted flag of the field. | |
15 * | |
16 * @return bool | |
17 * Returns TRUE if the field is deleted. | |
18 */ | |
19 public function isDeleted(); | |
20 | |
21 } |