You are here

SchedulerPlugin.php in Ultimate Cron 8.2

File

src/Annotation/SchedulerPlugin.php
View source
<?php

namespace Drupal\ultimate_cron\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Scheduler plugin annotation object.
 *
 * @Annotation
 *
 * @see \Drupal\ultimate_cron\SchedulerManager
 */
class SchedulerPlugin extends Plugin {

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

  /**
   * The human-readable title of the scheduler.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $title;

  /**
   * A short description of the scheduler.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $description;

}

Classes

Namesort descending Description
SchedulerPlugin Defines a Scheduler plugin annotation object.