You are here

Push.php in Open Social 10.0.x

File

modules/custom/activity_send/modules/activity_send_push_notification/src/Annotation/Push.php
View source
<?php

namespace Drupal\activity_send_push_notification\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines an Push Annotation object.
 *
 * @Annotation
 */
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;

}

Classes

Namesort descending Description
Push Defines an Push Annotation object.