DefaultWorkspaceHandler.php

Same filename and directory in other branches
  1. 10 core/modules/workspaces/src/Entity/Handler/DefaultWorkspaceHandler.php

Namespace

Drupal\workspaces\Entity\Handler

File

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.