openrat-cms

OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs | README

FolderCreateAction.class.php (935B)


      1 <?php
      2 namespace cms\action\folder;
      3 use cms\action\FolderAction;
      4 use cms\action\Method;
      5 use cms\model\Acl;
      6 
      7 
      8 class FolderCreateAction extends FolderAction implements Method {
      9     public function view() {
     10 	    $this->setTemplateVar('mayCreateFolder',$this->folder->hasRight( Acl::ACL_CREATE_FOLDER ) );
     11 	    $this->setTemplateVar('mayCreateFile'  ,$this->folder->hasRight( Acl::ACL_CREATE_FILE   ) );
     12 	    $this->setTemplateVar('mayCreateText'  ,$this->folder->hasRight( Acl::ACL_CREATE_FILE   ) );
     13 	    $this->setTemplateVar('mayCreateImage' ,$this->folder->hasRight( Acl::ACL_CREATE_FILE   ) );
     14 	    $this->setTemplateVar('mayCreatePage'  ,$this->folder->hasRight( Acl::ACL_CREATE_PAGE   ) );
     15 	    $this->setTemplateVar('mayCreateUrl'   ,$this->folder->hasRight( Acl::ACL_CREATE_LINK   ) );
     16 	    $this->setTemplateVar('mayCreateLink'  ,$this->folder->hasRight( Acl::ACL_CREATE_LINK   ) );
     17 
     18     }
     19 
     20 
     21     public function post() {
     22     }
     23 }