You are here

function AbrconfigForm::getRightsTypeList in Access by Reference 8.2

1 call to AbrconfigForm::getRightsTypeList()
AbrconfigForm::form in src/Form/AbrconfigForm.php
Gets the actual form array to be built.

File

src/Form/AbrconfigForm.php, line 138

Class

AbrconfigForm
Form handler for the Example add and edit forms.

Namespace

Drupal\access_by_ref\Form

Code

function getRightsTypeList() {
  return array(
    'view' => 'View',
    'update' => "Update",
    'delete' => 'Delete',
  );
}