Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
class DestinationNull extends Destination {
4
  function DestinationNull() {
5
    $this->Destination('');
6
  }
7
 
8
  function process($filename, $content_type) {
9
    // Do nothing
10
  }
11
}
12
 
13
?>