You are here

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

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

Set the URL identifier.

Parameters

string $url_id: URL identifier string.

Return value

$this

Overrides CslStyleInterface::setUrlId

1 call to CslStyle::setUrlId()
CslStyle::preSave in src/Entity/CslStyle.php
Acts on an entity before the presave hook is invoked.

File

src/Entity/CslStyle.php, line 188

Class

CslStyle
Defines the CSL style entity.

Namespace

Drupal\bibcite\Entity

Code

public function setUrlId($url_id) {
  $this->url_id = $url_id;
  return $this;
}