function Fixtures::sourcePath
Same name in other branches
- 9 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::sourcePath()
- 8.9.x core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::sourcePath()
- 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::sourcePath()
Gets a path to a source scaffold fixture.
Use in place of ScaffoldFilePath::sourcePath().
Parameters
string $project_name: The name of the project to fetch; $package_name is "fixtures/$project_name".
string $source: The name of the asset; path is "assets/$source".
Return value
\Drupal\Composer\Plugin\Scaffold\ScaffoldFilePath The full and relative path to the desired asset
See also
\Drupal\Composer\Plugin\Scaffold\ScaffoldFilePath::sourcePath()
2 calls to Fixtures::sourcePath()
- Fixtures::appendOp in core/
tests/ Drupal/ Tests/ Composer/ Plugin/ Scaffold/ Fixtures.php - Creates an AppendOp fixture.
- Fixtures::replaceOp in core/
tests/ Drupal/ Tests/ Composer/ Plugin/ Scaffold/ Fixtures.php - Creates a ReplaceOp fixture.
File
-
core/
tests/ Drupal/ Tests/ Composer/ Plugin/ Scaffold/ Fixtures.php, line 161
Class
- Fixtures
- Convenience class for creating fixtures.
Namespace
Drupal\Tests\Composer\Plugin\ScaffoldCode
public function sourcePath($project_name, $source) {
$package_name = "fixtures/{$project_name}";
$source_rel_path = "assets/{$source}";
$package_path = $this->projectFixtureDir($project_name);
return ScaffoldFilePath::sourcePath($package_name, $package_path, 'unknown', $source_rel_path);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.