class GroupPermissionsOutsiderForm in Group 2.0.x
Same name and namespace in other branches
- 8 src/Form/GroupPermissionsOutsiderForm.php \Drupal\group\Form\GroupPermissionsOutsiderForm
Permission form for the synchronized outsider roles for a group type.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\group\Form\GroupPermissionsForm
- class \Drupal\group\Form\GroupPermissionsTypeSpecificForm
- class \Drupal\group\Form\GroupPermissionsOutsiderForm
- class \Drupal\group\Form\GroupPermissionsTypeSpecificForm
- class \Drupal\group\Form\GroupPermissionsForm
Expanded class hierarchy of GroupPermissionsOutsiderForm
1 string reference to 'GroupPermissionsOutsiderForm'
File
- src/
Form/ GroupPermissionsOutsiderForm.php, line 14
Namespace
Drupal\group\FormView source
class GroupPermissionsOutsiderForm extends GroupPermissionsTypeSpecificForm {
/**
* The group role synchronizer service.
*
* @var \Drupal\group\GroupRoleSynchronizerInterface
*/
protected $groupRoleSynchronizer;
/**
* Constructs a new GroupPermissionsOutsiderForm.
*
* @param \Drupal\group\GroupRoleSynchronizerInterface $group_role_synchronizer
* The group role synchronizer service.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\group\Access\GroupPermissionHandlerInterface $permission_handler
* The group permission handler.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler.
*/
public function __construct(GroupRoleSynchronizerInterface $group_role_synchronizer, EntityTypeManagerInterface $entity_type_manager, GroupPermissionHandlerInterface $permission_handler, ModuleHandlerInterface $module_handler) {
parent::__construct($entity_type_manager, $permission_handler, $module_handler);
$this->groupRoleSynchronizer = $group_role_synchronizer;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('group_role.synchronizer'), $container
->get('entity_type.manager'), $container
->get('group.permissions'), $container
->get('module_handler'));
}
/**
* {@inheritdoc}
*/
protected function getInfo() {
$info = [
'outsider_info' => [
'#prefix' => '<p>',
'#suffix' => '</p>',
'#markup' => $this
->t("If one Outside role to represent all Authenticated users does not cut it, this is the form for you.<br />Here you can assign outsider permissions per configured site role.<br />Please note that any permissions set here will become void once the user joins the group."),
],
] + parent::getInfo();
// Unset the info about the group role audiences.
unset($info['role_info']);
return $info;
}
/**
* {@inheritdoc}
*/
protected function getGroupRoles() {
/** @var \Drupal\group\Entity\Storage\GroupRoleStorageInterface $storage */
$storage = $this->entityTypeManager
->getStorage('group_role');
return $storage
->loadSynchronizedByGroupTypes([
$this->groupType
->id(),
]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 3 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 3 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function | Returns a redirect response object for the specified route. | |
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
72 |
GroupPermissionsForm:: |
protected | property | The permission handler. | |
GroupPermissionsForm:: |
protected | property | The module handler. | |
GroupPermissionsForm:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
GroupPermissionsForm:: |
protected | function | Gets the permissions to display in this form. | |
GroupPermissionsForm:: |
function |
Form submission handler. Overrides FormInterface:: |
||
GroupPermissionsOutsiderForm:: |
protected | property | The group role synchronizer service. | |
GroupPermissionsOutsiderForm:: |
public static | function |
Instantiates a new instance of this class. Overrides GroupPermissionsTypeSpecificForm:: |
|
GroupPermissionsOutsiderForm:: |
protected | function |
Gets the group roles to display in this form. Overrides GroupPermissionsTypeSpecificForm:: |
|
GroupPermissionsOutsiderForm:: |
protected | function |
Gets a few basic instructions to show the user. Overrides GroupPermissionsTypeSpecificForm:: |
|
GroupPermissionsOutsiderForm:: |
public | function |
Constructs a new GroupPermissionsOutsiderForm. Overrides GroupPermissionsTypeSpecificForm:: |
|
GroupPermissionsTypeSpecificForm:: |
protected | property | The entity type manager. | |
GroupPermissionsTypeSpecificForm:: |
protected | property | The specific group role for this form. | |
GroupPermissionsTypeSpecificForm:: |
public | function |
Form constructor. Overrides GroupPermissionsForm:: |
|
GroupPermissionsTypeSpecificForm:: |
protected | function |
Gets the group type to build the form for. Overrides GroupPermissionsForm:: |
|
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. |