Files
luos/gulliver/thirdparty/html2ps_pdf/fetched_data._interface.class.php
Victor Saisa Lopez 6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00

15 lines
286 B
PHP

<?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 "";
}
}
?>