public function Drupal8::entityIsDummy in Realistic Dummy Content 3.x
Same name and namespace in other branches
- 8.2 api/src/Framework/Drupal8.php \Drupal\realistic_dummy_content_api\Framework\Drupal8::entityIsDummy()
- 7.2 api/src/Framework/Drupal8.php \Drupal\realistic_dummy_content_api\Framework\Drupal8::entityIsDummy()
Checks whether an entity should be considered dummy content.
Overrides Framework::entityIsDummy
File
- api/
src/ Framework/ Drupal8.php, line 138
Class
- Drupal8
- Drupal 8-specific code.
Namespace
Drupal\realistic_dummy_content_api\FrameworkCode
public function entityIsDummy($entity, $type) {
$return = isset($entity->devel_generate);
return $return;
}