You are here

class VfsInfoParser in Drupal 8

Hierarchy

Expanded class hierarchy of VfsInfoParser

File

core/tests/Drupal/KernelTests/Core/Theme/BaseThemeDefaultDeprecationTest.php, line 148

Namespace

Drupal\KernelTests\Core\Theme
View source
class VfsInfoParser extends InfoParser {

  /**
   * {@inheritdoc}
   */
  public function parse($filename) {
    return parent::parse("vfs://core/{$filename}");
  }

}

Members

Namesort descending Modifiers Type Description Overrides
InfoParser::$parsedInfos protected static property Array of all info keyed by filename.
InfoParserDynamic::$root protected property The root directory of the Drupal installation.
InfoParserDynamic::FIRST_CORE_VERSION_REQUIREMENT_SUPPORTED_VERSION constant The earliest Drupal version that supports the 'core_version_requirement'.
InfoParserDynamic::getAllPreviousCoreVersions protected static function Gets all the versions of Drupal 8 before a specific version.
InfoParserDynamic::getRequiredKeys protected function Returns an array of keys required to exist in .info.yml file.
InfoParserDynamic::isConstraintSatisfiedByPreviousVersion protected static function Determines if a constraint is satisfied by earlier versions of Drupal 8.
InfoParserDynamic::__construct public function InfoParserDynamic constructor.
VfsInfoParser::parse public function Parses Drupal module, theme and profile .info.yml files. Overrides InfoParser::parse