You are here

LingotekSetupTrait.php in Lingotek Translation 3.8.x

Namespace

Drupal\lingotek

File

src/LingotekSetupTrait.php
View source
<?php

namespace Drupal\lingotek;


/**
 * Useful methods for checking if Lingotek is already setup.
 */
trait LingotekSetupTrait {

  /**
   * A lingotek connector object
   *
   * @var \Drupal\lingotek\LingotekInterface
   */
  protected $lingotek;

  /**
   * Verify the Lingotek Translation module has been properly initialized.
   *
   * @return \Symfony\Component\HttpFoundation\RedirectResponse|false
   *   A redirect response object, or FALSE if setup is complete.
   */
  protected function checkSetup() {
    if (!$this
      ->setupCompleted()) {
      return $this
        ->redirect('lingotek.setup_account');
    }
    return FALSE;
  }

  /**
   * Checks if Lingotek module is completely set up.
   *
   * @return boolean TRUE if connected, FALSE otherwise.
   */
  public function setupCompleted() {
    $info = $this
      ->config('lingotek.settings')
      ->get('account');
    if (!empty($info['access_token']) && !empty($info['login_id'])) {
      return TRUE;
    }
    return FALSE;
  }

}

Traits

Namesort descending Description
LingotekSetupTrait Useful methods for checking if Lingotek is already setup.