Files
r2c/vendor/rockettheme/toolbox/Blueprints/tests/helper.php
T
2018-06-21 17:59:40 +02:00

9 lines
181 B
PHP

<?php
function blueprint_data_option_test(array $param = null, $sort = false)
{
if ($sort) {
asort($param);
}
return $param ?: ['yes' => 'Yes', 'no' => 'No'];
}