public function FileCount::access

File

src/Plugin/views/field/FileCount.php, line 26

Class

FileCount
Field handler which shows the file count for a job or job item.

Namespace

Drupal\tmgmt\Plugin\views\field

Code

public function access(AccountInterface $account) {
  if (!\Drupal::service('plugin.manager.tmgmt.translator')
    ->supportsFiles()) {
    return FALSE;
  }
  return parent::access($account);
}