You are here

public function LingotekAccount::isPlanType in Lingotek Translation 8

1 call to LingotekAccount::isPlanType()
LingotekAccount::showAdvanced in src/LingotekAccount.php

File

src/LingotekAccount.php, line 100
Defines LingotekAccount.

Class

LingotekAccount

Namespace

Drupal\lingotek

Code

public function isPlanType($type) {

  // isPlanType type values: 'advanced', 'standard'
  $account_type = $this
    ->getPlanType();
  return strcasecmp($type, $account_type) == 0;
}