Files
luos/thirdparty/html2ps_pdf/fetched_data._interface.class.php

15 lines
286 B
PHP
Raw Normal View History

2010-12-02 23:34:41 +00:00
<?php
class FetchedData {
function get_additional_data() {
die("Unoverridden 'get_additional_data' called in ".get_class($this));
}
function get_content() {
die("Unoverridden 'get_content' called in ".get_class($this));
}
function get_uri() {
return "";
}
}
?>