public function CslStyle::isCustom in Bibliography & Citation 8
Same name and namespace in other branches
- 2.0.x 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\EntityCode
public function isCustom() {
return $this->custom;
}