You are here

public function LingotekAccount::setPlan in Lingotek Translation 8

File

src/LingotekAccount.php, line 78
Defines LingotekAccount.

Class

LingotekAccount

Namespace

Drupal\lingotek

Code

public function setPlan($plan) {
  $this->plan = $plan;
  if (is_object($plan) && isset($plan->type)) {
    $this
      ->setPlanType($plan->type);
  }
}