MediaWiki
REL1_19
|
00001 <?php 00013 class NullRepo extends FileRepo { 00014 function __construct( $info ) {} 00015 00016 function storeBatch( $triplets, $flags = 0 ) { 00017 return false; 00018 } 00019 00020 function storeTemp( $originalName, $srcPath ) { 00021 return false; 00022 } 00023 function append( $srcPath, $toAppendPath, $flags = 0 ){ 00024 return false; 00025 } 00026 function appendFinish( $toAppendPath ){ 00027 return false; 00028 } 00029 function publishBatch( $triplets, $flags = 0 ) { 00030 return false; 00031 } 00032 function deleteBatch( $sourceDestPairs ) { 00033 return false; 00034 } 00035 function fileExistsBatch( $files, $flags = 0 ) { 00036 return false; 00037 } 00038 function getFileProps( $virtualUrl ) { 00039 return false; 00040 } 00041 function newFile( $title, $time = false ) { 00042 return false; 00043 } 00044 function findFile( $title, $options = array() ) { 00045 return false; 00046 } 00047 function concatenate( $fileList, $targetPath, $flags = 0 ) { 00048 return false; 00049 } 00050 }