Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

class DestinationNull extends Destination {
  function DestinationNull() {
    $this->Destination('');
  }

  function process($filename, $content_type) {
    // Do nothing
  }
}

?>