You are here

CronEncryptedFieldUpdate.php in Field Encryption 8.2

File

src/Plugin/QueueWorker/CronEncryptedFieldUpdate.php
View source
<?php

namespace Drupal\field_encrypt\Plugin\QueueWorker;

use Drupal\field_encrypt\Plugin\QueueWorker\EncryptedFieldUpdateBase;

/**
 * A Queue Worker that updates field encryption on cron run.
 *
 * @QueueWorker(
 *   id = "cron_encrypted_field_update",
 *   title = @Translation("Cron encrypted field updates."),
 *   cron = {"time" = 15}
 * )
 */
class CronEncryptedFieldUpdate extends EncryptedFieldUpdateBase {

}

Classes

Namesort descending Description
CronEncryptedFieldUpdate A Queue Worker that updates field encryption on cron run.