Exemplo n.º 1
0
 /**
  * changeparentfolderAction
  * @author Cornelius Hansjakob <*****@*****.**>
  * @version 1.0
  */
 public function changeparentfolderAction()
 {
     $this->core->logger->debug('cms->controllers->PageController->changeparentfolderAction()');
     $intPageId = $this->objRequest->getParam('pageId');
     $intParentFolderId = $this->objRequest->getParam('parentFolderId');
     if ($intPageId > 0 && $intParentFolderId > 0) {
         $this->getModelPages();
         $this->objModelPages->changeParentFolderId($intPageId, $intParentFolderId);
     }
     $this->_helper->viewRenderer->setNoRender();
 }