You are here

public function CslStyle::isCustom in Bibliography & Citation 2.0.x

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

Check if this CSL style is custom.

Return value

bool TRUE if this CSL style marked as custom and FALSE if not.

Overrides CslStyleInterface::isCustom

File

src/Entity/CslStyle.php, line 141

Class

CslStyle
Defines the CSL style entity.

Namespace

Drupal\bibcite\Entity

Code

public function isCustom() {
  return $this->custom;
}