Perform periodic fixity checks on selected files.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
487 B

<?php
namespace Drupal\dgi_fixity\Plugin\views\wizard;
use Drupal\views\Plugin\views\wizard\WizardPluginBase;
/**
* Used for creating 'fixity_check' views with the wizard.
*
* @ViewsWizard(
* id = "fixity_check_revision",
* base_table = "fixity_check_revision",
* title = @Translation("Fixity Check Revision"),
* )
*/
class FixityCheckRevision extends WizardPluginBase {
/**
* {@inheritdoc}
*/
protected $createdColumn = 'fixity_check_revision-performed';
}