You are here

public function CslStyle::hasParent in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x src/Entity/CslStyle.php \Drupal\bibcite\Entity\CslStyle::hasParent()

Check if this style has a prent style.

Return value

bool Boolean indicate the existence of parent.

Overrides CslStyleInterface::hasParent

File

src/Entity/CslStyle.php, line 156

Class

CslStyle
Defines the CSL style entity.

Namespace

Drupal\bibcite\Entity

Code

public function hasParent() {
  return !empty($this->parent);
}