public function Block::createDuplicateBlock in Drupal 9
Same name and namespace in other branches
- 8 core/modules/block/src/Entity/Block.php \Drupal\block\Entity\Block::createDuplicateBlock()
Creates a duplicate of the block entity.
Parameters
string $new_id: (optional) The new ID on the duplicate block.
string $new_theme: (optional) The theme on the duplicate block.
Return value
static A clone of $this with all identifiers unset, so saving it inserts a new entity into the storage system.
Overrides BlockInterface::createDuplicateBlock
File
- core/
modules/ block/ src/ Entity/ Block.php, line 329
Class
- Block
- Defines a Block configuration entity class.
Namespace
Drupal\block\EntityCode
public function createDuplicateBlock($new_id = NULL, $new_theme = NULL) {
$duplicate = parent::createDuplicate();
if (!empty($new_id)) {
$duplicate->id = $new_id;
}
if (!empty($new_theme)) {
$duplicate->theme = $new_theme;
}
return $duplicate;
}