Files
luos/thirdparty/html2ps_pdf/css.parse.media.inc.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

16 lines
414 B
PHP

<?php
function is_allowed_media($media_list) {
// Now we've got the list of media this style can be applied to;
// check if at least one of this media types is being used by the script
//
$allowed_media = config_get_allowed_media();
$allowed_found = false;
foreach ($media_list as $media) {
$allowed_found |= (array_search($media, $allowed_media) !== false);
};
return $allowed_found;
}
?>