You are here

class NodeCore 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 = "node_core",
  entityType = "node",
  title = FALSE,
  description = FALSE,
  weight = 0,
  fieldset = FALSE,
)

Hierarchy

Expanded class hierarchy of NodeCore

6 files declare their use of NodeCore
NodeBooleanField.php in src/Plugin/Setting/NodeBooleanField.php
Fasttoggle Node Sticky
NodeComments.php in src/Plugin/Setting/NodeComments.php
Fasttoggle Node Promoted
NodeListField.php in src/Plugin/Setting/NodeListField.php
Fasttoggle Node Sticky
NodePromotion.php in src/Plugin/Setting/NodePromotion.php
Fasttoggle Node Promotion
NodeStatus.php in src/Plugin/Setting/NodeStatus.php
Fasttoggle Node Status

... See full list

File

src/Plugin/SettingGroup/NodeCore.php, line 29
Fasttoggle Node Status

Namespace

Drupal\fasttoggle\Plugin\SettingGroup
View source
class NodeCore extends node 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 $definition
      ->getProvider() == 'node';
  }

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

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractSettingObject::$object protected property The object being managed.
AbstractSettingObject::getSitewideSettingFormElements public static function Get an array of sitewide setting form elements for this object type. Overrides SettingObjectInterface::getSitewideSettingFormElements 2
AbstractSettingObject::get_object public function Get the object instance. Overrides SettingObjectInterface::get_object
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.
node::get_id public function Object ID. Overrides AbstractSettingObject::get_id
node::get_title public function Object title. Overrides AbstractSettingObject::get_title
node::get_type public function Object subtype machine name. Overrides AbstractSettingObject::get_type
node::mayEditEntity public function Access. Overrides AbstractSettingObject::mayEditEntity
node::objectMatches public function Matches an object? Overrides SettingObjectInterface::objectMatches
node::save public function Save function. Overrides AbstractSettingObject::save
node::setObject public function Set the node object. Overrides AbstractSettingObject::setObject
NodeCore::groupMatches public static function Return whether this setting matches the provided field definition. Overrides SettingGroupInterface::groupMatches
NodeCore::mayEditGroup public function Access. Overrides SettingGroupInterface::mayEditGroup
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.