ILIAS
Release_4_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
WriterPart.php
Go to the documentation of this file.
1
<?php
30
if
(!defined(
'PHPEXCEL_ROOT'
)) {
34
define(
'PHPEXCEL_ROOT'
, dirname(__FILE__) .
'/../../../'
);
35
}
36
38
require_once PHPEXCEL_ROOT .
'PHPExcel/Writer/IWriter.php'
;
39
40
48
abstract
class
PHPExcel_Writer_Excel2007_WriterPart
49
{
55
private
$_parentWriter
;
56
63
public
function
setParentWriter
(
PHPExcel_Writer_IWriter
$pWriter = null) {
64
$this->_parentWriter = $pWriter;
65
}
66
73
public
function
getParentWriter
() {
74
if
(!is_null($this->_parentWriter)) {
75
return
$this->_parentWriter
;
76
}
else
{
77
throw
new
Exception
(
"No parent PHPExcel_Writer_IWriter assigned."
);
78
}
79
}
80
}
Services
Excel
classes
PHPExcel
Writer
Excel2007
WriterPart.php
Generated on Wed Apr 27 2016 19:01:40 for ILIAS by
1.8.1.2 (using
Doxyfile
)