public function DemoContent::getSource in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 8.2 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 8.3 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 8.4 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 8.5 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 8.6 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 8.7 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 8.8 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 10.3.x modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 10.0.x modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 10.1.x modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
- 10.2.x modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
Returns the file name.
Return value
string The source filename where are data.
Overrides DemoContentInterface::getSource
1 call to DemoContent::getSource()
- DemoContent::fetchData in modules/
custom/ social_demo/ src/ DemoContent.php - Gets the data from a file.
File
- modules/
custom/ social_demo/ src/ DemoContent.php, line 57
Class
- DemoContent
- Class DemoContent.
Namespace
Drupal\social_demoCode
public function getSource() {
$definition = $this
->getPluginDefinition();
return isset($definition['source']) ? $definition['source'] : NULL;
}