public function SqlContentEntityStorage::setTemporary in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php \Drupal\Core\Entity\Sql\SqlContentEntityStorage::setTemporary()
Changes the temporary state of the storage.
@internal Only to be used internally by Entity API.
Parameters
bool $temporary: Whether to use a temporary table mapping or not.
File
- core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php, line 360
Class
- SqlContentEntityStorage
- A content entity database storage implementation.
Namespace
Drupal\Core\Entity\SqlCode
public function setTemporary($temporary) {
$this->temporary = $temporary;
}