openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

ProjectlistAction.class.php (1221B)


      1 <?php
      2 
      3 namespace cms\action;
      4 
      5 use cms\model\Permission;
      6 use cms\model\Folder;
      7 use cms\model\Project;
      8 use language\Messages;
      9 use util\exception\SecurityException;
     10 
     11 // OpenRat Content Management System
     12 // Copyright (C) 2002-2012 Jan Dankert, cms@jandankert.de
     13 //
     14 // This program is free software; you can redistribute it and/or
     15 // modify it under the terms of the GNU General Public License
     16 // as published by the Free Software Foundation; either version 2
     17 // of the License, or (at your option) any later version.
     18 //
     19 // This program is distributed in the hope that it will be useful,
     20 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     21 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     22 // GNU General Public License for more details.
     23 //
     24 // You should have received a copy of the GNU General Public License
     25 // along with this program; if not, write to the Free Software
     26 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
     27 
     28 
     29 /**
     30  * Action-Klasse zum Bearbeiten eines Projektes
     31  * @author $Author$
     32  * @version $Revision$
     33  * @package openrat.actions
     34  */
     35 abstract class ProjectlistAction extends BaseAction
     36 {
     37 	function __construct()
     38 	{
     39         parent::__construct();
     40 	}
     41 }