/**
  * changeparentrootfolderAction
  * @author Cornelius Hansjakob <*****@*****.**>
  * @version 1.0
  */
 public function changeparentrootfolderAction()
 {
     $this->core->logger->debug('cms->controllers->PageController->changeparentrootfolderAction()');
     $intPageId = $this->objRequest->getParam('pageId');
     $intRootFolderId = $this->objRequest->getParam('rootFolderId');
     if ($intPageId > 0 && $intRootFolderId > 0) {
         $this->getModelPages();
         $this->objModelPages->changeParentRootFolderId($intPageId, $intRootFolderId);
     }
     $this->_helper->viewRenderer->setNoRender();
 }