TranslatorListBuilder.php in Translation Management Tool 8
File
src/Entity/ListBuilder/TranslatorListBuilder.php
View source
<?php
namespace Drupal\tmgmt\Entity\ListBuilder;
use Drupal\Core\Config\Entity\DraggableListBuilder;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityListBuilderInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\tmgmt\TranslatorManager;
use Symfony\Component\DependencyInjection\ContainerInterface;
class TranslatorListBuilder extends DraggableListBuilder implements EntityListBuilderInterface {
protected $storage;
protected $translatorManager;
public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, TranslatorManager $translator_manager) {
parent::__construct($entity_type, $storage);
$this->storage = $storage;
$this->translatorManager = $translator_manager;
}
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
return new static($entity_type, $container
->get('entity_type.manager')
->getStorage($entity_type
->id()), $container
->get('plugin.manager.tmgmt.translator'));
}
public function getFormId() {
return 'tmgmt_translator_overview';
}
public function buildHeader() {
$header['label'] = t('Label');
$header['logo'] = t('Provider');
$installed_translators = $this->translatorManager
->getLabels();
if (empty($installed_translators)) {
$this
->messenger()
->addError(t("There are no provider plugins available. Please install a provider plugin."));
}
return $header + parent::buildHeader();
}
public function getDefaultOperations(EntityInterface $entity) {
$operations = parent::getDefaultOperations($entity);
$operations['clone'] = array(
'url' => $entity
->toUrl('clone-form'),
'title' => t('Clone'),
'weight' => 50,
);
return $operations;
}
public function buildRow(EntityInterface $entity) {
$row['label'] = $entity
->label();
$definition = \Drupal::service('plugin.manager.tmgmt.translator')
->getDefinition($entity
->getPluginId());
if (isset($definition['logo'])) {
$logo_render_array = [
'#theme' => 'image',
'#uri' => file_create_url(drupal_get_path('module', $definition['provider']) . '/' . $definition['logo']),
'#alt' => $definition['label'],
'#title' => $definition['label'],
'#attributes' => [
'class' => 'tmgmt-logo-overview',
],
];
}
$row['logo'] = isset($logo_render_array) ? $logo_render_array : [
'#markup' => $definition['label'],
];
return $row + parent::buildRow($entity);
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
$form['#attached']['library'][] = 'tmgmt/admin';
return $form;
}
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this
->messenger()
->addStatus(t('The order of the translators has been saved.'));
}
}