You are here

public function FilebrowserValidator::exploreSubdirs in Filebrowser 3.x

Same name and namespace in other branches
  1. 8.2 src/Services/FilebrowserValidator.php \Drupal\filebrowser\Services\FilebrowserValidator::exploreSubdirs()

File

src/Services/FilebrowserValidator.php, line 47

Class

FilebrowserValidator

Namespace

Drupal\filebrowser\Services

Code

public function exploreSubdirs($path, $node) {
  if (is_dir($path)) {
    return $node->filebrowser->exploreSubdirs;
  }
  else {
    return true;
  }
}