You are here

class Push in Open Social 8.9

Same name and namespace in other branches
  1. 8.7 modules/custom/activity_send/modules/activity_send_push_notification/src/Annotation/Push.php \Drupal\activity_send_push_notification\Annotation\Push
  2. 8.8 modules/custom/activity_send/modules/activity_send_push_notification/src/Annotation/Push.php \Drupal\activity_send_push_notification\Annotation\Push
  3. 10.3.x modules/custom/activity_send/modules/activity_send_push_notification/src/Annotation/Push.php \Drupal\activity_send_push_notification\Annotation\Push
  4. 10.0.x modules/custom/activity_send/modules/activity_send_push_notification/src/Annotation/Push.php \Drupal\activity_send_push_notification\Annotation\Push
  5. 10.1.x modules/custom/activity_send/modules/activity_send_push_notification/src/Annotation/Push.php \Drupal\activity_send_push_notification\Annotation\Push
  6. 10.2.x modules/custom/activity_send/modules/activity_send_push_notification/src/Annotation/Push.php \Drupal\activity_send_push_notification\Annotation\Push

Defines an Push Annotation object.

Hierarchy

Expanded class hierarchy of Push

1 file declares its use of Push
PushManager.php in modules/custom/activity_send/modules/activity_send_push_notification/src/PushManager.php

File

modules/custom/activity_send/modules/activity_send_push_notification/src/Annotation/Push.php, line 12

Namespace

Drupal\activity_send_push_notification\Annotation
View source
class Push extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The title of form elements set.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

  /**
   * The description of form elements set.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $description = NULL;

  /**
   * The plugin weight.
   *
   * @var int
   */
  public $weight = 0;

}

Members

Namesort descending Modifiers Type Description Overrides
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2
Push::$description public property The description of form elements set.
Push::$id public property The plugin ID.
Push::$title public property The title of form elements set.
Push::$weight public property The plugin weight.