Projet

Général

Profil

Paste
Télécharger (925 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / fpdi-version / filters / FilterLZW_FPDI.php @ 74f6bef0

1
<?php
2
//
3
//  FPDI - Version 1.4.4
4
//
5
//    Copyright 2004-2013 Setasign - Jan Slabon
6
//
7
//  Licensed under the Apache License, Version 2.0 (the "License");
8
//  you may not use this file except in compliance with the License.
9
//  You may obtain a copy of the License at
10
//
11
//      http://www.apache.org/licenses/LICENSE-2.0
12
//
13
//  Unless required by applicable law or agreed to in writing, software
14
//  distributed under the License is distributed on an "AS IS" BASIS,
15
//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
//  See the License for the specific language governing permissions and
17
//  limitations under the License.
18
//
19

    
20
require_once('FilterLZW.php');
21

    
22
class FilterLZW_FPDI extends FilterLZW {
23

    
24
    var $fpdi;
25

    
26
    function FilterLZW_FPDI(&$fpdi) {
27
        $this->fpdi =& $fpdi;
28
    }
29
    
30
    function error($msg) {
31
        $this->fpdi->error($msg);
32
    }
33
}