public function LingotekAccount::isPlanType in Lingotek Translation 7.4
Same name and namespace in other branches
- 7.7 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::isPlanType()
- 7.3 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::isPlanType()
- 7.5 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::isPlanType()
- 7.6 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::isPlanType()
2 calls to LingotekAccount::isPlanType()
- LingotekAccount::getEnterpriseStatusText in lib/
Drupal/ lingotek/ LingotekAccount.php - LingotekAccount::isEnterprise in lib/
Drupal/ lingotek/ LingotekAccount.php
File
- lib/
Drupal/ lingotek/ LingotekAccount.php, line 105 - Defines LingotekAccount.
Class
- LingotekAccount
- A class representing a Lingotek Account
Code
public function isPlanType($type) {
// isPlanType type values: 'enterprise', 'standard'
$account_type = $this
->getPlanType();
return strcasecmp($type, $account_type) == 0;
}