public function LingotekAccount::setStatus in Lingotek Translation 7.4
Same name and namespace in other branches
- 7.7 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::setStatus()
- 7.2 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::setStatus()
- 7.3 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::setStatus()
- 7.5 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::setStatus()
- 7.6 lib/Drupal/lingotek/LingotekAccount.php \LingotekAccount::setStatus()
2 calls to LingotekAccount::setStatus()
- LingotekAccount::getAccountStatus in lib/
Drupal/ lingotek/ LingotekAccount.php - Get Account Status NOTE: You shouldnt need to call this directly. Its called in the constructor. Request: …
- LingotekAccount::__construct in lib/
Drupal/ lingotek/ LingotekAccount.php - Constructor.
File
- lib/
Drupal/ lingotek/ LingotekAccount.php, line 71 - Defines LingotekAccount.
Class
- LingotekAccount
- A class representing a Lingotek Account
Code
public function setStatus($value = 'inactive') {
$this->status = $value;
}