You are here

public function Profile::getDescription in Linkit 8.4

Same name and namespace in other branches
  1. 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\Entity

Code

public function getDescription() {
  return $this
    ->get('description');
}