Utils.class.php 160 B

12345678910111213
  1. <?php
  2. class Utils
  3. {
  4. public static function getCheckboxBooleanValue($checkbox_value)
  5. {
  6. return $checkbox_value == 'on' ? true : false;
  7. }
  8. }
  9. ?>