comparison core/modules/content_moderation/src/ModerationInformationInterface.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 1fec387a4317
children af1871eacc83
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
161 * @return \Drupal\workflows\WorkflowInterface|null 161 * @return \Drupal\workflows\WorkflowInterface|null
162 * The workflow entity. NULL if there is no workflow. 162 * The workflow entity. NULL if there is no workflow.
163 */ 163 */
164 public function getWorkflowForEntity(ContentEntityInterface $entity); 164 public function getWorkflowForEntity(ContentEntityInterface $entity);
165 165
166 /**
167 * Gets unsupported features for a given entity type.
168 *
169 * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
170 * The entity type to get the unsupported features for.
171 *
172 * @return array
173 * An array of unsupported features for this entity type.
174 */
175 public function getUnsupportedFeatures(EntityTypeInterface $entity_type);
176
166 } 177 }