_bool ( $num )
Source file: app/functions/core-function.php
Used by
Uses
Source
function _bool($num) { switch ($num) { case 1: return 'Yes'; break; case 0: return 'No'; break; } }
Expand full source code Collapse full source code View on Github
Source file: app/functions/core-function.php
function _bool($num) { switch ($num) { case 1: return 'Yes'; break; case 0: return 'No'; break; } }
Expand full source code Collapse full source code View on Github