You are here

public function DemoContent::getSource in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  2. 8 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  3. 8.2 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  4. 8.3 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  5. 8.4 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  6. 8.5 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  7. 8.7 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  8. 8.8 modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  9. 10.3.x modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  10. 10.0.x modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  11. 10.1.x modules/custom/social_demo/src/DemoContent.php \Drupal\social_demo\DemoContent::getSource()
  12. 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 58

Class

DemoContent
Class DemoContent.

Namespace

Drupal\social_demo

Code

public function getSource() {
  $definition = $this
    ->getPluginDefinition();
  return isset($definition['source']) ? $definition['source'] : NULL;
}