コード例 #1
0
ファイル: templates.php プロジェクト: jakesyl/flexicontent
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
     // Register Extra task
     $this->registerTask('add', 'edit');
     $this->registerTask('apply', 'save');
 }
コード例 #2
0
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
     // Register Extra task
     $this->registerTask('initcsv', 'importcsv');
     $this->registerTask('clearcsv', 'importcsv');
     $this->registerTask('testcsv', 'importcsv');
 }
コード例 #3
0
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     if (FLEXI_J16GE) {
         $this->text_prefix = 'com_content';
     }
     parent::__construct();
     // Register Extra task
     $this->registerTask('params', 'params');
 }
コード例 #4
0
ファイル: filemanager.php プロジェクト: jakesyl/flexicontent
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
     if (!FLEXI_J16GE) {
         $this->registerTask('accesspublic', 'access');
         $this->registerTask('accessregistered', 'access');
         $this->registerTask('accessspecial', 'access');
     }
     $this->registerTask('uploads', 'upload');
 }
コード例 #5
0
ファイル: users.php プロジェクト: noxidsoft/flexicontent-cck
 /**
  * Constructor
  *
  * @params	array	Controller configuration array
  */
 function __construct($config = array())
 {
     parent::__construct($config);
     // Register Extra tasks
     $this->registerTask('add', 'display');
     $this->registerTask('edit', 'display');
     $this->registerTask('apply', 'save');
     $this->registerTask('saveandnew', 'save');
     $this->registerTask('flogout', 'logout');
     $this->registerTask('unblock', 'block');
 }
コード例 #6
0
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
     // Register Extra task
     $this->registerTask('add', 'edit');
     $this->registerTask('apply', 'save');
     $this->registerTask('saveandnew', 'save');
     $this->registerTask('copy', 'copy');
     $this->registerTask('copy_wvalues', 'copy');
     $this->registerTask('exportxml', 'export');
     $this->registerTask('exportsql', 'export');
     $this->registerTask('exportcsv', 'export');
 }
コード例 #7
0
ファイル: items.php プロジェクト: kosmosby/medicine-prof
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
     // Register Extra task
     $this->registerTask('add', 'edit');
     $this->registerTask('apply', 'save');
     $this->registerTask('saveandnew', 'save');
     if (!FLEXI_J16GE) {
         $this->registerTask('accesspublic', 'access');
         $this->registerTask('accessregistered', 'access');
         $this->registerTask('accessspecial', 'access');
     }
 }
コード例 #8
0
ファイル: categories.php プロジェクト: jakesyl/flexicontent
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     if (FLEXI_J16GE) {
         $this->text_prefix = 'com_content';
     }
     parent::__construct();
     // Register Extra task
     $this->registerTask('add', 'edit');
     $this->registerTask('apply', 'save');
     $this->registerTask('saveandnew', 'save');
     if (!FLEXI_J16GE) {
         $this->registerTask('accesspublic', 'access');
         $this->registerTask('accessregistered', 'access');
         $this->registerTask('accessspecial', 'access');
     }
     $this->registerTask('params', 'params');
 }
コード例 #9
0
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
     $this->registerTask('uploads', 'upload');
 }
コード例 #10
0
ファイル: search.php プロジェクト: kosmosby/medicine-prof
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
 }
コード例 #11
0
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
     // Register Extra task
 }
コード例 #12
0
 /**
  * Constructor
  *
  * @since 1.0
  */
 function __construct()
 {
     parent::__construct();
     // Register Extra task
     $this->registerTask('import', 'import');
 }