class DemoContentParser in Open Social 10.3.x
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 8 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 8.2 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 8.3 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 8.4 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 8.5 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 8.6 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 8.7 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 8.8 modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 10.0.x modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 10.1.x modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
- 10.2.x modules/custom/social_demo/src/DemoContentParser.php \Drupal\social_demo\DemoContentParser
Class DemoContentParser.
@package Drupal\social_demo
Hierarchy
- class \Drupal\social_demo\DemoContentParser extends \Symfony\Component\Yaml\Yaml implements DemoContentParserInterface
Expanded class hierarchy of DemoContentParser
1 string reference to 'DemoContentParser'
- social_demo.services.yml in modules/
custom/ social_demo/ social_demo.services.yml - modules/custom/social_demo/social_demo.services.yml
1 service uses DemoContentParser
- social_demo.yaml_parser in modules/
custom/ social_demo/ social_demo.services.yml - \Drupal\social_demo\DemoContentParser
File
- modules/
custom/ social_demo/ src/ DemoContentParser.php, line 12
Namespace
Drupal\social_demoView source
class DemoContentParser extends Yaml implements DemoContentParserInterface {
/**
* {@inheritdoc}
*/
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;
}
/**
* Parses YAML file into a PHP value.
*
* @param string $file
* The filename.
* @param string $module
* The module where the Yaml file is placed.
* @param string $profile
* The profile used.
*
* @return mixed
* The YAML converted to a PHP value.
*/
public function parseFileFromModule($file, $module, $profile) {
return $this
->parse(file_get_contents($this
->getPath($file, $module, $profile)));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DemoContentParser:: |
public | function |
Returns the path for the given file. Overrides DemoContentParserInterface:: |
|
DemoContentParser:: |
public | function |
Parses YAML file into a PHP value. Overrides DemoContentParserInterface:: |