Example #1
0
 public function previewAction()
 {
     SxCms_Acl::requireAcl('page', 'page.preview');
     $pageId = (int) $this->_getParam('id');
     $page = new SxCms_Page();
     $page->setId($pageId)->loadState(SxCms_Page::STATE_LIVE);
     $this->_helper->actionStack('content', 'index', 'default', array('url' => $page->getLink()));
 }