API

RockPageBuilder provides a powerful API for managing blocks programmatically. This allows for advanced manipulation of content, including moving, cloning, copying, and adding blocks. Below is an overview of how to interact with these capabilities through the API.

Moving Blocks

To move a block to another page, you can use the move() method on the block object. This method requires the target page and field:

$block = $pages->get(123);
$block->move($pages->get("/my/target/page"), "my_target_field");

Cloning Blocks

Cloning blocks is useful when you want to duplicate content within the same page or across different pages. Use the clone() method on the block object:

$block = $pages->get(123);
$clone = $block->clone();

Copying Blocks to other Pages

If you want to clone and move with one command, you can do this:

$block = $pages->get(123);
$block->copyTo($pages->get("/my/target/page"), "my_target_field");

Adding Blocks

This is helpful when migrating content to RockPageBuilder: To add a block to a RockPageBuilder field, you can use the add() method on the FieldData object. You need to specify the type of the block and optionally, any data you want to initialize the block with.

// Assuming 'rockpagebuilder_blocks' is your RockPageBuilder field
$blocks = $page->getUnformatted('rockpagebuilder_blocks');

// Add a block by template name
$block = $blocks->add('Text', [
  'title' => 'My new headline',
  'body' => '<p>foo</p><p>bar</p>',
]);

// save changes
$page->setAndSave('rockpagebuilder_blocks', $blocks);

Reference: See FieldData::add() method in FieldData.php.

Saving Settings

If you need to change (or import) settings of a block you can do so like this:

$block->saveSetting('image-size', 'S');

Note that you don't need to save the block, because settings are saved as page meta() data and that data is instantly written to the database.