You are here

public function DemoContentParser::getPath in Open Social 10.2.x

Same name and namespace in other branches
  1. 8.9 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  2. 8 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  3. 8.2 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  4. 8.3 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  5. 8.4 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  6. 8.5 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  7. 8.6 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  8. 8.7 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  9. 8.8 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  10. 10.3.x modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  11. 10.0.x modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()
  12. 10.1.x modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser::getPath()

Returns the path for the given file.

Parameters

string $file: The filename.

string $module: The module where the Yaml file is placed.

string $profile: The profile used.

Return value

string String with the full pathname including the file.

Overrides DemoContentParserInterface::getPath

1 call to DemoContentParser::getPath()
DemoContentParser::parseFileFromModule in modules/custom/social_demo/src/DemoContentParser.php
Parses YAML file into a PHP value.

File

modules/custom/social_demo/src/DemoContentParser.php, line 17

Class

DemoContentParser
Class DemoContentParser.

Namespace

Drupal\social_demo

Code

public function getPath($file, $module, $profile) {
  if ($profile != '' && strpos($profile, DIRECTORY_SEPARATOR) === FALSE) {
    $profile .= DIRECTORY_SEPARATOR;
  }
  return drupal_get_path('module', $module) . DIRECTORY_SEPARATOR . $profile . $file;
}