public function Profile::getDescription in Linkit 8.4
Same name and namespace in other branches
- 8.5 src/Entity/Profile.php \Drupal\linkit\Entity\Profile::getDescription()
Gets the profile description.
Return value
string The profile description.
Overrides ProfileInterface::getDescription
File
- src/
Entity/ Profile.php, line 121 - Contains \Drupal\linkit\Entity\Profile.
Class
- Profile
- Defines the linkit profile entity.
Namespace
Drupal\linkit\EntityCode
public function getDescription() {
return $this
->get('description');
}