source: branches/version-2_11-dev/data/module/fpdi/filters/FilterASCII85_FPDI.php @ 20993

Revision 20993, 941 bytes checked in by Seasoft, 13 years ago (diff)

#1374 (依存ライブラリのアップデート)

  • FPDF 1.6 -> 1.7
  • FPDI 1.4 -> 1.4.1 (配置パスをFPDFから分離)
Line 
1<?php
2//
3//  FPDI - Version 1.4.1
4//
5//    Copyright 2004-2011 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
20require_once('FilterASCII85.php');
21
22class FilterASCII85_FPDI extends FilterASCII85 {
23
24    var $fpdi;
25   
26    function FilterASCII85_FPDI(&$fpdi) {
27        $this->fpdi =& $fpdi;
28    }
29
30    function error($msg) {
31        $this->fpdi->error($msg);
32    }
33}
Note: See TracBrowser for help on using the repository browser.