You are here

public function AdminPermissions::getMachineTitle in Security Review 8

Returns the machine name of the check.

Naming rules (if overridden):

  • All characters should be lowerspace.
  • Use characters only from the english alphabet.
  • Don't use spaces (use "_" instead).

Return value

string ID of check.

Overrides Check::getMachineTitle

File

src/Checks/AdminPermissions.php, line 32

Class

AdminPermissions
Checks whether untrusted roles have restricted permissions.

Namespace

Drupal\security_review\Checks

Code

public function getMachineTitle() {
  return 'admin_permissions';
}