You are here

class comment in Fasttoggle 8.2

Class for managing comments.

Plugin annotation


@Plugin(
  id = "comment",
  title = "Comments",
  description = @Translation("Select which options for fast toggling of comment settings are available."),
  weight = 10,
)

Hierarchy

Expanded class hierarchy of comment

1 file declares its use of comment
CommentCore.php in src/Plugin/SettingGroup/CommentCore.php
Fasttoggle Comment Status
2 string references to 'comment'
CommentCore::groupMatches in src/Plugin/SettingGroup/CommentCore.php
Return whether this setting matches the provided field definition.
CommentStatus::matches in src/Plugin/Setting/CommentStatus.php
Return whether this setting matches the provided field definition.

File

src/Plugin/SettingObject/comment.php, line 25
Fasttoggle Managed Comment

Namespace

Drupal\fasttoggle\Plugin\SettingObject
View source
class comment extends AbstractSettingObject implements SettingObjectInterface {

  /**
   * Object ID.
   *
   * @return integer
   *   The unique ID of this instance of the object.
   */
  public function get_id() {
    return $this->object->cid;
  }

  /**
   * Comment title.
   *
   * @return integer
   *   The title of the comment.
   */
  public function get_title() {
    return $this->object->title;
  }

  /**
   * Save function.
   */
  public function save() {
    comment_save($this->object);
  }

  /**
   * Matches an object?
   */
  public function objectMatches($object) {
    return $object instanceof \Drupal\comment\Entity\Comment;
  }

  /**
   * Access.
   *
   * @param $object
   *   The object for which update access is being checked.
   *
   * @return bool
   *   Whether the user is permitted to modify settings on this comment.
   */
  public function mayEditEntity() {
    $user = \Drupal::currentUser();
    return AccessResult::forbiddenIf(!$user
      ->hasPermission('administer comments'))
      ->cachePerUser();
  }

}

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_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
comment::get_id public function Object ID. Overrides AbstractSettingObject::get_id
comment::get_title public function Comment title. Overrides AbstractSettingObject::get_title
comment::mayEditEntity public function Access. Overrides AbstractSettingObject::mayEditEntity
comment::objectMatches public function Matches an object? Overrides SettingObjectInterface::objectMatches
comment::save public function Save function. Overrides AbstractSettingObject::save
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.