Skip to content

Instantly share code, notes, and snippets.

@radarseven
Created March 14, 2014 18:30
Show Gist options
  • Save radarseven/9553815 to your computer and use it in GitHub Desktop.
Save radarseven/9553815 to your computer and use it in GitHub Desktop.
Craft 1.4 - Import Matrix block to entry.
<?php
/**
* Matrix Block
*/
if( isset($importEntry->post) )
{
$matrixData = array(
'pageContent' => array(
'type' => 'text',
'enabled' => true,
'fields' => array(
'text' => $post,
),
),
);
// Save the new Matrix data
$entry->setContentFromPost( $matrixData );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment