public Block::createDuplicateBlock($new_id = NULL, $new_theme = NULL)
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 319
Class
- Block
- Defines a Block configuration entity class.
Namespace
Drupal\block\Entity
Code
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;
}
Please login to continue.