OrgAddController.php in RedHen CRM 8
File
modules/redhen_org/src/Controller/OrgAddController.php
View source
<?php
namespace Drupal\redhen_org\Controller;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Link;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
class OrgAddController extends ControllerBase {
public function __construct(EntityStorageInterface $storage, EntityStorageInterface $type_storage) {
$this->storage = $storage;
$this->typeStorage = $type_storage;
}
public static function create(ContainerInterface $container) {
$entity_type_manager = $container
->get('entity_type.manager');
return new static($entity_type_manager
->getStorage('redhen_org'), $entity_type_manager
->getStorage('redhen_org_type'));
}
public function add(Request $request) {
$types = $this->typeStorage
->loadMultiple();
if ($types && count($types) == 1) {
$type = reset($types);
return $this
->addForm($type, $request);
}
if (count($types) === 0) {
return [
'#markup' => $this
->t('You have not created any %bundle types yet. @link to add a new type.', [
'%bundle' => 'Org',
'@link' => Link::createFromRoute($this
->t('Go to the type creation page'), 'entity.redhen_org_type.add_form'),
]),
];
}
return [
'#theme' => 'redhen_org_content_add_list',
'#content' => $types,
];
}
public function addForm(EntityInterface $redhen_org_type, Request $request) {
$entity = $this->storage
->create([
'type' => $redhen_org_type
->id(),
]);
return $this
->entityFormBuilder()
->getForm($entity);
}
public function getAddFormTitle(EntityInterface $redhen_org_type) {
return t('Create of bundle @label', [
'@label' => $redhen_org_type
->label(),
]);
}
}