[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 <?php 2 // 3 // Definition of eZBZIP2Handler class 4 // 5 // Created on: <13-Aug-2003 16:20:19 amos> 6 // 7 // SOFTWARE NAME: eZ publish 8 // SOFTWARE RELEASE: 3.9.0 9 // BUILD VERSION: 17785 10 // COPYRIGHT NOTICE: Copyright (C) 1999-2006 eZ systems AS 11 // SOFTWARE LICENSE: GNU General Public License v2.0 12 // NOTICE: > 13 // This program is free software; you can redistribute it and/or 14 // modify it under the terms of version 2.0 of the GNU General 15 // Public License as published by the Free Software Foundation. 16 // 17 // This program is distributed in the hope that it will be useful, 18 // but WITHOUT ANY WARRANTY; without even the implied warranty of 19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 // GNU General Public License for more details. 21 // 22 // You should have received a copy of version 2.0 of the GNU General 23 // Public License along with this program; if not, write to the Free 24 // Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 25 // MA 02110-1301, USA. 26 // 27 // 28 29 /*! \file ezbzip2handler.php 30 */ 31 32 /*! 33 \class eZBZIP2Handler ezbzip2handler.php 34 \brief Handles files compressed with bzip2 35 36 37 NOTE: This is not done yet. 38 */ 39 40 include_once ( 'lib/ezfile/classes/ezcompressionhandler.php' ); 41 42 class eZBZIP2Handler extends eZCompressionHandler 43 { 44 /*! 45 See eZCompressionHandler::eZCompressionHandler 46 */ 47 function eZBZIP2Handler() 48 { 49 $this->eZCompressionHandler(); 50 } 51 52 /*! 53 \reimp 54 */ 55 function doOpen( $filename, $mode ) 56 { 57 } 58 59 /*! 60 \reimp 61 */ 62 function doClose() 63 { 64 } 65 66 /*! 67 \reimp 68 */ 69 function doRead( $uncompressedLength = false ) 70 { 71 } 72 73 /*! 74 \reimp 75 */ 76 function doWrite( $data, $uncompressedLength = false ) 77 { 78 } 79 80 /*! 81 \reimp 82 */ 83 function doFlush() 84 { 85 } 86 87 /*! 88 \reimp 89 */ 90 function compress( $source ) 91 { 92 } 93 94 /*! 95 \reimp 96 */ 97 function decompress( $source ) 98 { 99 } 100 101 /*! 102 \reimp 103 */ 104 function error() 105 { 106 } 107 108 /*! 109 \reimp 110 */ 111 function errorString() 112 { 113 } 114 115 /*! 116 \reimp 117 */ 118 function errorNumber() 119 { 120 } 121 122 /// \privatesection 123 var $WorkFactor; 124 var $BlockSize; 125 var $SmallDecompress; 126 } 127 128 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |