mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-09-09 04:59:52 +02:00
13 lines
160 B
PHP
13 lines
160 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class Utils
|
||
|
|
{
|
||
|
|
|
||
|
|
public static function getCheckboxBooleanValue($checkbox_value)
|
||
|
|
{
|
||
|
|
return $checkbox_value == 'on' ? true : false;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|