You are here

public function ProjectInfo::getProjectName in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Utility/ProjectInfo.php \Drupal\Core\Utility\ProjectInfo::getProjectName()

Determines what project a given file object belongs to.

Parameters

\Drupal\Core\Extension\Extension $file: An extension object.

Return value

string The canonical project short name.

1 call to ProjectInfo::getProjectName()
ProjectInfo::processInfoList in core/lib/Drupal/Core/Utility/ProjectInfo.php
Populates an array of project data.

File

core/lib/Drupal/Core/Utility/ProjectInfo.php, line 151

Class

ProjectInfo
Performs operations on drupal.org project data.

Namespace

Drupal\Core\Utility

Code

public function getProjectName(Extension $file) {
  $project_name = '';
  if (isset($file->info['project'])) {
    $project_name = $file->info['project'];
  }
  elseif (strpos($file
    ->getPath(), 'core/modules') === 0) {
    $project_name = 'drupal';
  }
  return $project_name;
}