InlineEditingDisabler.php in Workbench Moderation 8
Same filename and directory in other branches
Namespace
Drupal\workbench_moderationFile
src/InlineEditingDisabler.phpView source
<?php
namespace Drupal\workbench_moderation;
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
use Drupal\Core\Entity\EntityInterface;
/**
* Disables the inline editing for entities with forward revisions.
*/
class InlineEditingDisabler {
/**
* The moderation info.
*
* @var \Drupal\workbench_moderation\ModerationInformationInterface
*/
protected $moderationInfo;
/**
* Creates a new InlineEditingDisabler instance.
*
* @param \Drupal\workbench_moderation\ModerationInformationInterface $moderation_info
* The moderation info.
*/
public function __construct(ModerationInformationInterface $moderation_info) {
$this->moderationInfo = $moderation_info;
}
/**
* Implements hook_entity_view_alter().
*/
public function entityViewAlter(&$build, EntityInterface $entity, EntityViewDisplayInterface $display) {
if ($this->moderationInfo
->isModeratableEntity($entity) && !$this->moderationInfo
->isLatestRevision($entity)) {
// Hide quickedit, because its super confusing for the user to not edit
// the live revision.
unset($build['#attributes']['data-quickedit-entity-id']);
}
}
/**
* Implements hook_module_implements_alter().
*/
public function moduleImplementsAlter(&$implementations, $hook) {
if ($hook == 'entity_view_alter') {
// Find the quickedit implementation and move workbench after it.
unset($implementations['workbench_moderation']);
$implementations['workbench_moderation'] = FALSE;
}
}
}
Classes
Name | Description |
---|---|
InlineEditingDisabler | Disables the inline editing for entities with forward revisions. |