DemoContentParser.php in Open Social 8
Same filename and directory in other branches
- 8.9 modules/custom/social_demo/src/DemoContentParser.php
- 8.2 modules/custom/social_demo/src/DemoContentParser.php
- 8.3 modules/custom/social_demo/src/DemoContentParser.php
- 8.4 modules/custom/social_demo/src/DemoContentParser.php
- 8.5 modules/custom/social_demo/src/DemoContentParser.php
- 8.6 modules/custom/social_demo/src/DemoContentParser.php
- 8.7 modules/custom/social_demo/src/DemoContentParser.php
- 8.8 modules/custom/social_demo/src/DemoContentParser.php
- 10.3.x modules/custom/social_demo/src/DemoContentParser.php
- 10.0.x modules/custom/social_demo/src/DemoContentParser.php
- 10.1.x modules/custom/social_demo/src/DemoContentParser.php
- 10.2.x modules/custom/social_demo/src/DemoContentParser.php
Namespace
Drupal\social_demoFile
modules/custom/social_demo/src/DemoContentParser.phpView source
<?php
namespace Drupal\social_demo;
use Symfony\Component\Yaml\Yaml;
/**
* Class DemoContentParser.
*
* @package Drupal\social_demo
*/
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)));
}
}
Classes
Name | Description |
---|---|
DemoContentParser | Class DemoContentParser. |