You are here

public function ConnectionAccess::getOperations in RedHen CRM 8

List of available operation options.

Return value

array List of operations.

2 calls to ConnectionAccess::getOperations()
ConnectionAccess::buildOptionsForm in modules/redhen_connection/src/Plugin/views/access/ConnectionAccess.php
Provide a form to edit options for this plugin.
ConnectionAccess::summaryTitle in modules/redhen_connection/src/Plugin/views/access/ConnectionAccess.php
Returns the summary of the settings in the display.

File

modules/redhen_connection/src/Plugin/views/access/ConnectionAccess.php, line 59

Class

ConnectionAccess
Access plugin for RedHen Connections.

Namespace

Drupal\redhen_connection\Plugin\views\access

Code

public function getOperations() {
  return [
    'view' => $this
      ->t('View'),
    'view label' => $this
      ->t('View label'),
    'update' => $this
      ->t('Update'),
    'delete' => $this
      ->t('Delete'),
  ];
}