DefaultWorkspaceHandler.php
Same filename in other branches
Namespace
Drupal\workspaces\Entity\HandlerFile
-
core/
modules/ workspaces/ src/ Entity/ Handler/ DefaultWorkspaceHandler.php
View source
<?php
namespace Drupal\workspaces\Entity\Handler;
use Drupal\Core\Entity\EntityHandlerInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Common customizations for most entity types.
*
* @internal
*/
class DefaultWorkspaceHandler implements WorkspaceHandlerInterface, EntityHandlerInterface {
/**
* {@inheritdoc}
*/
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
return new static();
}
/**
* {@inheritdoc}
*/
public function isEntitySupported(EntityInterface $entity) : bool {
return TRUE;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
DefaultWorkspaceHandler | Common customizations for most entity types. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.