ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
PHPExcel_Shared_OLE_PPS Class Reference
+ Inheritance diagram for PHPExcel_Shared_OLE_PPS:
+ Collaboration diagram for PHPExcel_Shared_OLE_PPS:

Public Member Functions

 __construct ($No, $name, $type, $prev, $next, $dir, $time_1st, $time_2nd, $data, $children)
 The constructor.
 _DataLen ()
 Returns the amount of data saved for this PPS.
 _getPpsWk ()
 Returns a string with the PPS's WK (What is a WK?)
 _savePpsSetPnt (&$pps_array)
 Updates index and pointers to previous, next and children PPS's for this PPS.

Data Fields

 $No
 $Name
 $Type
 $PrevPps
 $NextPps
 $DirPps
 $Time1st
 $Time2nd
 $_StartBlock
 $Size
 $_data
 $children = array()
 $ole

Detailed Description

Definition at line 40 of file OLE_PPS.php.

Constructor & Destructor Documentation

PHPExcel_Shared_OLE_PPS::__construct (   $No,
  $name,
  $type,
  $prev,
  $next,
  $dir,
  $time_1st,
  $time_2nd,
  $data,
  $children 
)

The constructor.

public

Parameters
integer$NoThe PPS index
string$nameThe PPS name
integer$typeThe PPS type. Dir, Root or File
integer$prevThe index of the previous PPS
integer$nextThe index of the next PPS
integer$dirThe index of it's first child if this is a Dir or Root PPS
integer$time_1stA timestamp
integer$time_2ndA timestamp
string$dataThe (usually binary) source data of the PPS
array$childrenArray containing children PPS for this PPS

Definition at line 135 of file OLE_PPS.php.

References $children, $data, $dir, $name, $No, and $type.

{
$this->No = $No;
$this->Name = $name;
$this->Type = $type;
$this->PrevPps = $prev;
$this->NextPps = $next;
$this->DirPps = $dir;
$this->Time1st = $time_1st;
$this->Time2nd = $time_2nd;
$this->_data = $data;
$this->children = $children;
if ($data != '') {
$this->Size = strlen($data);
} else {
$this->Size = 0;
}
}

Member Function Documentation

PHPExcel_Shared_OLE_PPS::_DataLen ( )

Returns the amount of data saved for this PPS.

public

Returns
integer The amount of data (in bytes)

Definition at line 160 of file OLE_PPS.php.

{
if (!isset($this->_data)) {
return 0;
}
if (isset($this->_PPS_FILE)) {
fseek($this->_PPS_FILE, 0);
$stats = fstat($this->_PPS_FILE);
return $stats[7];
} else {
return strlen($this->_data);
}
}
PHPExcel_Shared_OLE_PPS::_getPpsWk ( )

Returns a string with the PPS's WK (What is a WK?)

public

Returns
string The binary string

Definition at line 180 of file OLE_PPS.php.

References $Name, $ret, and PHPExcel_Shared_OLE\LocalDate2OLE().

Referenced by PHPExcel_Shared_OLE_PPS_Root\_savePps().

{
for ($i = 0; $i < (64 - strlen($this->Name)); ++$i) {
$ret .= "\x00";
}
$ret .= pack("v", strlen($this->Name) + 2) // 66
. pack("c", $this->Type) // 67
. pack("c", 0x00) //UK // 68
. pack("V", $this->PrevPps) //Prev // 72
. pack("V", $this->NextPps) //Next // 76
. pack("V", $this->DirPps) //Dir // 80
. "\x00\x09\x02\x00" // 84
. "\x00\x00\x00\x00" // 88
. "\xc0\x00\x00\x00" // 92
. "\x00\x00\x00\x46" // 96 // Seems to be ok only for Root
. "\x00\x00\x00\x00" // 100
. PHPExcel_Shared_OLE::LocalDate2OLE($this->Time1st) // 108
. PHPExcel_Shared_OLE::LocalDate2OLE($this->Time2nd) // 116
. pack("V", isset($this->_StartBlock)?
$this->_StartBlock:0) // 120
. pack("V", $this->Size) // 124
. pack("V", 0); // 128
return $ret;
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

PHPExcel_Shared_OLE_PPS::_savePpsSetPnt ( $pps_array)

Updates index and pointers to previous, next and children PPS's for this PPS.

I don't think it'll work with Dir PPS's.

public

Parameters
array&$pps_arrayReference to the array of PPS's for the whole OLE container
Returns
integer The index for this PPS

Definition at line 215 of file OLE_PPS.php.

References $No.

Referenced by PHPExcel_Shared_OLE_PPS_Root\save().

{
$pps_array[count($pps_array)] = &$this;
$this->No = count($pps_array) - 1;
$this->PrevPps = 0xFFFFFFFF;
$this->NextPps = 0xFFFFFFFF;
if (count($this->children) > 0) {
$this->DirPps = $this->children[0]->_savePpsSetPnt($pps_array);
} else {
$this->DirPps = 0xFFFFFFFF;
}
return $this->No;
}

+ Here is the caller graph for this function:

Field Documentation

PHPExcel_Shared_OLE_PPS::$_data

Definition at line 106 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$_StartBlock

Definition at line 94 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$children = array()

Definition at line 112 of file OLE_PPS.php.

Referenced by __construct().

PHPExcel_Shared_OLE_PPS::$DirPps

Definition at line 76 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$Name

Definition at line 52 of file OLE_PPS.php.

Referenced by _getPpsWk().

PHPExcel_Shared_OLE_PPS::$NextPps

Definition at line 70 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$No

Definition at line 46 of file OLE_PPS.php.

Referenced by __construct(), and _savePpsSetPnt().

PHPExcel_Shared_OLE_PPS::$ole

Definition at line 118 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$PrevPps

Definition at line 64 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$Size

Definition at line 100 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$Time1st

Definition at line 82 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$Time2nd

Definition at line 88 of file OLE_PPS.php.

PHPExcel_Shared_OLE_PPS::$Type

Definition at line 58 of file OLE_PPS.php.


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