You are here

public function DemoContent::getProfile in Open Social 8.2

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

Returns the profile.

Return value

string The used demo content profile.

Overrides DemoContentInterface::getProfile

2 calls to DemoContent::getProfile()
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 81

Class

DemoContent
Class DemoContent.

Namespace

Drupal\social_demo

Code

public function getProfile() {
  return isset($this->profile) ? $this->profile : '';
}