Create a User Defined Tag called "content_dump". Put the following in it:
Code: Select all
global $gCms;
$cntnt = $gCms->getContentOperations();
foreach ($cntnt->GetAllContent() as $page) {
echo '<h1>' . $page->mName . '</h1>';
$page_data = $cntnt->LoadContentFromAlias($page->mAlias);
echo($page_data->mProperties->mPropertyValues['content_en']);
echo "<br><br>";
}
Code: Select all
{content_dump}
Now you can copy and paste it into a word document.
NOTE: This won't process any smarty you might have on a page. If you need news as well, that's another procedure.