ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
PHPExcel_Shared_OLE_PPS_File Class Reference
+ Inheritance diagram for PHPExcel_Shared_OLE_PPS_File:
+ Collaboration diagram for PHPExcel_Shared_OLE_PPS_File:

Public Member Functions

 __construct ($name)
 The constructor. More...
 
 init ()
 Initialization method. More...
 
 append ($data)
 Append data to PPS. More...
 
 getStream ()
 Returns a stream for reading this file using fread() etc. More...
 
- Public Member Functions inherited from PHPExcel_Shared_OLE_PPS
 __construct ($No, $name, $type, $prev, $next, $dir, $time_1st, $time_2nd, $data, $children)
 The constructor. More...
 
 _DataLen ()
 Returns the amount of data saved for this PPS. More...
 
 _getPpsWk ()
 Returns a string with the PPS's WK (What is a WK?) More...
 

Additional Inherited Members

- Static Public Member Functions inherited from PHPExcel_Shared_OLE_PPS
static _savePpsSetPnt (&$raList, $to_save, $depth=0)
 Updates index and pointers to previous, next and children PPS's for this PPS. More...
 
- Data Fields inherited from PHPExcel_Shared_OLE_PPS
 $No
 
 $Name
 
 $Type
 
 $PrevPps
 
 $NextPps
 
 $DirPps
 
 $Time1st
 
 $Time2nd
 
 $_StartBlock
 
 $Size
 
 $_data
 
 $children = array()
 
 $ole
 

Detailed Description

Definition at line 30 of file File.php.

Constructor & Destructor Documentation

◆ __construct()

PHPExcel_Shared_OLE_PPS_File::__construct (   $name)

The constructor.

public

Parameters
string$nameThe name of the file (in Unicode)
See also
OLE::Asc2Ucs()

Definition at line 39 of file File.php.

References $name, array, and PHPExcel_Shared_OLE\OLE_PPS_TYPE_FILE.

40  {
41  parent::__construct(
42  null,
43  $name,
45  null,
46  null,
47  null,
48  null,
49  null,
50  '',
51  array());
52  }
const OLE_PPS_TYPE_FILE
Definition: OLE.php:42
if($format !==null) $name
Definition: metadata.php:146
Create styles array
The data for the language used.

Member Function Documentation

◆ append()

PHPExcel_Shared_OLE_PPS_File::append (   $data)

Append data to PPS.

public

Parameters
string$dataThe data to append

Definition at line 71 of file File.php.

References $data.

72  {
73  $this->_data .= $data;
74  }

◆ getStream()

PHPExcel_Shared_OLE_PPS_File::getStream ( )

Returns a stream for reading this file using fread() etc.

Returns
resource a read-only stream

Definition at line 80 of file File.php.

81  {
82  $this->ole->getStream($this);
83  }

◆ init()

PHPExcel_Shared_OLE_PPS_File::init ( )

Initialization method.

Has to be called right after OLE_PPS_File().

public

Returns
mixed true on success

Definition at line 60 of file File.php.

61  {
62  return true;
63  }

The documentation for this class was generated from the following file: