ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
SeqConditionSet.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 /*
22  PHP port of ADL SeqConditionSet.java
23  @author Hendrik Holtmann <holtmann@mac.com>
24 
25  This .php file is GPL licensed (see above) but based on
26  SeqConditionSet.java by ADL Co-Lab, which is licensed as:
27 
28  Advanced Distributed Learning Co-Laboratory (ADL Co-Lab) Hub grants you
29  ("Licensee") a non-exclusive, royalty free, license to use, modify and
30  redistribute this software in source and binary code form, provided that
31  i) this copyright notice and license appear on all copies of the software;
32  and ii) Licensee does not utilize the software in a manner which is
33  disparaging to ADL Co-Lab Hub.
34 
35  This software is provided "AS IS," without a warranty of any kind. ALL
36  EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
37  ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
38  OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. ADL Co-Lab Hub AND ITS LICENSORS
39  SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF
40  USING, MODIFYING OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO
41  EVENT WILL ADL Co-Lab Hub OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE,
42  PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
43  INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE
44  THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE
45  SOFTWARE, EVEN IF ADL Co-Lab Hub HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
46  DAMAGES.
47 */
48 
49  define("EVALUATE_UNKNOWN", 0);
50  define("EVALUATE_TRUE", 1);
51  define("EVALUATE_FALSE", -1);
52  define("COMBINATION_ALL", "all");
53  define("COMBINATION_ANY", "any");
54 
55  /******************************************************************************
56  *
57  * This file is part of ILIAS, a powerful learning management system.
58  *
59  * ILIAS is licensed with the GPL-3.0, you should have received a copy
60  * of said license along with the source code.
61  *
62  * If this is not the case or you just want to try ILIAS, you'll find
63  * us at:
64  * https://www.ilias.de
65  * https://github.com/ILIAS-eLearning
66  *
67  *****************************************************************************/
69  {
70  public ?string $mCombination = null;
71 
72  //convert vector to array
73  public ?array $mConditions = null;
74  public bool $mRetry = false;
75  public bool $mRollup = false;
76 
77  public function __construct(bool $iRollup)
78  {
79  $this->mRollup = $iRollup;
80  }
81  }
__construct(bool $iRollup)