You are here

public static function Updater::findInfoFile in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Updater/Updater.php \Drupal\Core\Updater\Updater::findInfoFile()

Determines what the most important (or only) info file is in a directory.

Since there is no enforcement of which info file is the project's "main" info file, this will get one with the same name as the directory, or the first one it finds. Not ideal, but needs a larger solution.

Parameters

string $directory: Directory to search in.

Return value

string Path to the info file.

2 calls to Updater::findInfoFile()
Updater::getExtensionInfo in core/lib/Drupal/Core/Updater/Updater.php
Get Extension information from directory.
Updater::getProjectTitle in core/lib/Drupal/Core/Updater/Updater.php
Returns the project name from a Drupal info file.

File

core/lib/Drupal/Core/Updater/Updater.php, line 114
Contains \Drupal\Core\Updater\Updater.

Class

Updater
Defines the base class for Updaters used in Drupal.

Namespace

Drupal\Core\Updater

Code

public static function findInfoFile($directory) {
  $info_files = file_scan_directory($directory, '/.*\\.info.yml$/');
  if (!$info_files) {
    return FALSE;
  }
  foreach ($info_files as $info_file) {
    if (Unicode::substr($info_file->filename, 0, -9) == drupal_basename($directory)) {

      // Info file Has the same name as the directory, return it.
      return $info_file->uri;
    }
  }

  // Otherwise, return the first one.
  $info_file = array_shift($info_files);
  return $info_file->uri;
}