Files
luos/thirdparty/html2ps_pdf/fetcher.local.class.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

22 lines
357 B
PHP

<?php
class FetcherLocalFile extends Fetcher {
var $_content;
function FetcherLocalFile($file) {
$this->_content = file_get_contents($file);
}
function get_data($dummy1) {
return new FetchedDataURL($this->_content, array(), "");
}
function get_base_url() {
return "";
}
function error_message() {
return "";
}
}
?>