ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
VarianceBase.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7 abstract class VarianceBase
8 {
9  protected static function datatypeAdjustmentAllowStrings($value)
10  {
11  if (is_bool($value)) {
12  return (int) $value;
13  } elseif (is_string($value)) {
14  return 0;
15  }
16 
17  return $value;
18  }
19 
20  protected static function datatypeAdjustmentBooleans($value)
21  {
23  return (int) $value;
24  }
25 
26  return $value;
27  }
28 }
static getCompatibilityMode()
Return the current Compatibility Mode.
Definition: Functions.php:93