You are here

public static function AuditLogViewsData::getEventOptions in Audit Log 8.2

Get event options.

File

src/Entity/AuditLogViewsData.php, line 44

Class

AuditLogViewsData
Provides Views data for Audit log entities.

Namespace

Drupal\audit_log\Entity

Code

public static function getEventOptions() {
  return [
    'insert' => t('Insert'),
    'update' => t('Update'),
    'delete' => t('Delete'),
  ];
}