• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Data Structures
  • Files
  • File List
  • Globals

Modules/Scorm2004/classes/adlparser/SeqRule.php

Go to the documentation of this file.
00001 <?php
00002 /*
00003         +-----------------------------------------------------------------------------+
00004         | ILIAS open source                                                           |
00005         +-----------------------------------------------------------------------------+
00006         | Copyright (c) 1998-2007 ILIAS open source, University of Cologne            |
00007         |                                                                             |
00008         | This program is free software; you can redistribute it and/or               |
00009         | modify it under the terms of the GNU General Public License                 |
00010         | as published by the Free Software Foundation; either version 2              |
00011         | of the License, or (at your option) any later version.                      |
00012         |                                                                             |
00013         | This program is distributed in the hope that it will be useful,             |
00014         | but WITHOUT ANY WARRANTY; without even the implied warranty of              |
00015         | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               |
00016         | GNU General Public License for more details.                                |
00017         |                                                                             |
00018         | You should have received a copy of the GNU General Public License           |
00019         | along with this program; if not, write to the Free Software                 |
00020         | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. |
00021         +-----------------------------------------------------------------------------+
00022 */
00023 /*
00024         PHP port of ADL SeqRule.java
00025         @author Hendrik Holtmann <holtmann@mac.com>
00026         
00027         This .php file is GPL licensed (see above) but based on
00028         SeqRule.java by ADL Co-Lab, which is licensed as:
00029         
00030         Advanced Distributed Learning Co-Laboratory (ADL Co-Lab) Hub grants you 
00031         ("Licensee") a non-exclusive, royalty free, license to use, modify and 
00032         redistribute this software in source and binary code form, provided that 
00033         i) this copyright notice and license appear on all copies of the software; 
00034         and ii) Licensee does not utilize the software in a manner which is 
00035         disparaging to ADL Co-Lab Hub.
00036 
00037         This software is provided "AS IS," without a warranty of any kind.  ALL 
00038         EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING 
00039         ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE 
00040         OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.  ADL Co-Lab Hub AND ITS LICENSORS 
00041         SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF 
00042         USING, MODIFYING OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES.  IN NO 
00043         EVENT WILL ADL Co-Lab Hub OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, 
00044         PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, 
00045         INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE 
00046         THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE 
00047         SOFTWARE, EVEN IF ADL Co-Lab Hub HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 
00048         DAMAGES.
00049 */
00050 
00051 define("SEQ_ACTION_NOACTION","noaction");
00052 define("SEQ_ACTION_IGNORE","ignore");
00053 define("SEQ_ACTION_SKIP","skip");
00054 define("SEQ_ACTION_DISABLED","disabled");
00055 define("SEQ_ACTION_HIDEFROMCHOICE","hiddenFromChoice");
00056 define("SEQ_ACTION_FORWARDBLOCK","stopForwardTraversal");
00057 define("SEQ_ACTION_EXITPARENT","exitParent");
00058 define("SEQ_ACTION_EXITALL","exitAll");
00059 define("SEQ_ACTION_RETRY","retry");
00060 define("SEQ_ACTION_RETRYALL","retryAll");
00061 define("SEQ_ACTION_CONTINUE","continue");
00062 define("SEQ_ACTION_PREVIOUS","previous");
00063 define("SEQ_ACTION_EXIT","exit");
00064 
00065 
00066 class SeqRule {
00067         
00068         public $mAction=SEQ_ACTION_IGNORE;
00069         public $mConditions=null;
00070         
00071         public function __construct() {
00072                         
00073         }
00074         
00075 }
00076 
00077 ?>

Generated on Fri Dec 13 2013 17:56:52 for ILIAS Release_3_9_x_branch .rev 46835 by  doxygen 1.7.1