public function createAction()
 {
     $folder = $this->getFolderFromParams();
     if (!$folder) {
         return $this->folderNotFound();
     }
     $this->view->page_heading = 'Create A New Folder In ' . $folder->getName();
     $form = new Admin_Form_CreateFolder();
     $this->view->form = $form;
     if (!$this->getRequest()->isPost()) {
         return;
     }
     if ($form->isValid($this->getRequest()->getPost())) {
         $new_folder = new App_Model_Folder();
         $new_folder->setName($form->name->getValue());
         $new_folder->setParent($folder);
         try {
             $this->getDb()->persist($new_folder);
             $this->getDb()->flush();
         } catch (PDOException $e) {
             $dbException = new App_Model_DBExceptionDecorator($e);
             if ($dbException->isDuplicateKeyViolation()) {
                 $form->name->addError('A folder with this name already exists within the parent folder');
                 return;
             }
         }
         $this->addFlashMessageSuccess('Your new folder has been created successfully');
         $this->_redirect($this->getUrl(array('folder_id' => $folder->getId()), 'admin_view_folder'));
     }
 }
 public function getAllChildFilePaths($base_path, \Doctrine\ORM\EntityManager $db)
 {
     $this->__load();
     return parent::getAllChildFilePaths($base_path, $db);
 }