public function LingotekAccount::isPlanType in Lingotek Translation 8
1 call to LingotekAccount::isPlanType()
File
- src/
LingotekAccount.php, line 100 - Defines LingotekAccount.
Class
Namespace
Drupal\lingotekCode
public function isPlanType($type) {
// isPlanType type values: 'advanced', 'standard'
$account_type = $this
->getPlanType();
return strcasecmp($type, $account_type) == 0;
}