@@ -0,0 +1,13 @@
+<?php
+
+class Utils
+{
+ public static function getCheckboxBooleanValue($checkbox_value)
+ {
+ return $checkbox_value == 'on' ? true : false;
+ }
+}
+?>