You are here

public function DemoContent::getModule in Open Social 8.4

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

Returns the module name.

Return value

string The module name where is placed file with data.

Overrides DemoContentInterface::getModule

2 calls to DemoContent::getModule()
DemoContent::fetchData in modules/custom/social_demo/src/DemoContent.php
Gets the data from a file.
DemoFile::createContent in modules/custom/social_demo/src/DemoFile.php
Creates content.

File

modules/custom/social_demo/src/DemoContent.php, line 73

Class

DemoContent
Class DemoContent.

Namespace

Drupal\social_demo

Code

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