You are here

public function FlaggingCollection::setBaseFlag in Flag Lists 8

Same name and namespace in other branches
  1. 4.0.x src/Entity/FlaggingCollection.php \Drupal\flag_lists\Entity\FlaggingCollection::setBaseFlag()

Sets the Base Flag for this Flagging Collection.

Parameters

string $name: The Base Flag name.

Return value

\Drupal\flag_lists\Entity\FlaggingCollectionInterface The called Flagging collection entity.

Overrides FlaggingCollectionInterface::setBaseFlag

File

src/Entity/FlaggingCollection.php, line 239

Class

FlaggingCollection
Defines the Flagging collection entity.

Namespace

Drupal\flag_lists\Entity

Code

public function setBaseFlag($baseFlag) {
  return $this
    ->set('templateflag', $baseFlag);
}