class GroupController in Group 2.0.x
Same name and namespace in other branches
- 8 src/Entity/Controller/GroupController.php \Drupal\group\Entity\Controller\GroupController
Returns responses for Group routes.
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\group\Entity\Controller\GroupController
Expanded class hierarchy of GroupController
File
- src/
Entity/ Controller/ GroupController.php, line 16
Namespace
Drupal\group\Entity\ControllerView source
class GroupController extends ControllerBase {
/**
* The private store factory.
*
* @var \Drupal\Core\TempStore\PrivateTempStoreFactory
*/
protected $privateTempStoreFactory;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* The entity form builder.
*
* @var \Drupal\Core\Entity\EntityFormBuilderInterface
*/
protected $entityFormBuilder;
/**
* The renderer.
*
* @var \Drupal\Core\Render\RendererInterface
*/
protected $renderer;
/**
* Constructs a new GroupController.
*
* @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
* The private store factory.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\Core\Entity\EntityFormBuilderInterface $entity_form_builder
* The entity form builder.
* @param \Drupal\Core\Render\RendererInterface $renderer
* The renderer.
*/
public function __construct(PrivateTempStoreFactory $temp_store_factory, EntityTypeManagerInterface $entity_type_manager, EntityFormBuilderInterface $entity_form_builder, RendererInterface $renderer) {
$this->privateTempStoreFactory = $temp_store_factory;
$this->entityTypeManager = $entity_type_manager;
$this->entityFormBuilder = $entity_form_builder;
$this->renderer = $renderer;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('tempstore.private'), $container
->get('entity_type.manager'), $container
->get('entity.form_builder'), $container
->get('renderer'));
}
/**
* Provides the group creation form.
*
* @param \Drupal\group\Entity\GroupTypeInterface $group_type
* The type of group to create.
*
* @return array
* A group submission form.
*/
public function addForm(GroupTypeInterface $group_type) {
$wizard_id = 'group_creator';
$store = $this->privateTempStoreFactory
->get($wizard_id);
$store_id = $group_type
->id();
// See if the group type is configured to ask the creator to fill out their
// membership details. Also pass this info to the form state.
$extra['group_wizard'] = $group_type
->creatorMustCompleteMembership();
$extra['group_wizard_id'] = $wizard_id;
// Pass the group type and store ID to the form state as well.
$extra['group_type'] = $group_type;
$extra['store_id'] = $store_id;
// See if we are on the second step of the form.
$step2 = $extra['group_wizard'] && $store
->get("{$store_id}:step") === 2;
// Group form, potentially as wizard step 1.
if (!$step2) {
$storage = $this
->entityTypeManager()
->getStorage('group');
// Only create a new group if we have nothing stored.
if (!($entity = $store
->get("{$store_id}:entity"))) {
$values['type'] = $group_type
->id();
$entity = $storage
->create($values);
}
}
else {
// Create an empty group membership that does not yet have a group set.
$values = [
'type' => $group_type
->getContentPlugin('group_membership')
->getContentTypeConfigId(),
'entity_id' => $this
->currentUser()
->id(),
];
$entity = $this
->entityTypeManager()
->getStorage('group_content')
->create($values);
}
// Return the entity form with the configuration gathered above.
return $this
->entityFormBuilder()
->getForm($entity, 'add', $extra);
}
/**
* The _title_callback for the group.add route.
*
* @param \Drupal\group\Entity\GroupTypeInterface $group_type
* The type of group to create.
*
* @return string
* The page title.
*/
public function addFormTitle(GroupTypeInterface $group_type) {
return $this
->t('Add @group_type_label', [
'@group_type_label' => $group_type
->label(),
]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function | Returns a redirect response object for the specified route. | |
ControllerBase:: |
protected | function | Returns the state storage service. | |
GroupController:: |
protected | property |
The entity form builder. Overrides ControllerBase:: |
|
GroupController:: |
protected | property |
The entity type manager. Overrides ControllerBase:: |
|
GroupController:: |
protected | property | The private store factory. | |
GroupController:: |
protected | property | The renderer. | |
GroupController:: |
public | function | Provides the group creation form. | |
GroupController:: |
public | function | The _title_callback for the group.add route. | |
GroupController:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
GroupController:: |
public | function | Constructs a new GroupController. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |