You are here

class UserRoles in Fasttoggle 8.2

Abstract interface for settings. Plugin strings are used for quick filtering without the need to instantiate the class.

Plugin annotation


@Plugin(
  id = "user_roles",
  entityType = "user",
  title = @Translation("Roles"),
  description = FALSE,
  weight = 100,
  fieldset = FALSE,
)

Hierarchy

Expanded class hierarchy of UserRoles

1 file declares its use of UserRoles
UserRole.php in src/Plugin/Setting/UserRole.php
Fasttoggle User Status

File

src/Plugin/SettingGroup/UserRoles.php, line 28
Fasttoggle User Role

Namespace

Drupal\fasttoggle\Plugin\SettingGroup
View source
class UserRoles extends user implements SettingGroupInterface {

  /**
   * Return whether this setting matches the provided field definition.
   *
   * @param $definition
   *   The field definition for which a match is being sought.
   *
   * @return boolean
   *   Whether this plugin handles the definition.
   */
  public static function groupMatches($definition) {
    return true;
  }

  /**
   * Access.
   *
   * @return bool
   *   Whether the user is permitted to modify settings on this comment.
   */
  public function mayEditGroup() {
    return AccessResult::allowed();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractSettingObject::$object protected property The object being managed.
AbstractSettingObject::get_object public function Get the object instance. Overrides SettingObjectInterface::get_object
AbstractSettingObject::get_type public function Object subtype machine name. Overrides SettingObjectInterface::get_type 1
AbstractSettingObject::setObject public function Set an instance of the object. Overrides SettingObjectInterface::setObject 1
AbstractSettingObject::__get public function Retrieve the object type that can be modified by this setting. 1
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 92
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
user::getSitewideSettingFormElements public static function Return a list of settings for this object type. Overrides AbstractSettingObject::getSitewideSettingFormElements
user::get_id public function Object ID. Overrides AbstractSettingObject::get_id
user::get_title public function User name. Overrides AbstractSettingObject::get_title
user::mayEditEntity public function Access. Overrides AbstractSettingObject::mayEditEntity
user::objectMatches public function Matches an object? Overrides SettingObjectInterface::objectMatches
user::save public function Save function. Overrides AbstractSettingObject::save
UserRoles::groupMatches public static function Return whether this setting matches the provided field definition. Overrides SettingGroupInterface::groupMatches
UserRoles::mayEditGroup public function Access. Overrides SettingGroupInterface::mayEditGroup