| Current Path : /var/www/html/taet.readinessglobal.com/wp-content/plugins/o365/function/ |
| Current File : /var/www/html/taet.readinessglobal.com/wp-content/plugins/o365/function/o365_str_to_bool.php |
<?php defined('ABSPATH') OR die('Direct Access Restricted!');
function o365_str_to_bool( $str ){
switch( $str ){
case 'yes':
case 'on':
return true;
break;
case 'no':
case 'off':
return false;
break;
default:
return false;
}
}