function Updater::getProjectTitle

Same name in other branches
  1. 9 core/lib/Drupal/Core/Updater/Updater.php \Drupal\Core\Updater\Updater::getProjectTitle()
  2. 8.9.x core/lib/Drupal/Core/Updater/Updater.php \Drupal\Core\Updater\Updater::getProjectTitle()
  3. 10 core/lib/Drupal/Core/Updater/Updater.php \Drupal\Core\Updater\Updater::getProjectTitle()
  4. 11.x core/lib/Drupal/Core/Updater/Updater.php \Drupal\Core\Updater\Updater::getProjectTitle()

Return the project name from a Drupal info file.

Parameters

string $directory: Directory to search for the info file.

Return value

string The title of the project.

2 calls to Updater::getProjectTitle()
Updater::__construct in includes/updater.inc
update_manager_install_form_submit in modules/update/update.manager.inc
Form submission handler for update_manager_install_form().

File

includes/updater.inc, line 188

Class

Updater
Base class for Updaters used in Drupal.

Code

public static function getProjectTitle($directory) {
    $info_file = self::findInfoFile($directory);
    $info = drupal_parse_info_file($info_file);
    if (empty($info)) {
        throw new UpdaterException(t('Unable to parse info file: %info_file.', array(
            '%info_file' => $info_file,
        )));
    }
    if (empty($info['name'])) {
        throw new UpdaterException(t("The info file (%info_file) does not define a 'name' attribute.", array(
            '%info_file' => $info_file,
        )));
    }
    return $info['name'];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.