Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1624 → Rev 3473

/trunk/jrest/lib/OLE/PPS.php
125,7 → 125,7
* @param string $data The (usually binary) source data of the PPS
* @param array $children Array containing children PPS for this PPS
*/
function OLE_PPS($No, $name, $type, $prev, $next, $dir, $time_1st, $time_2nd, $data, $children)
function __construct($No, $name, $type, $prev, $next, $dir, $time_1st, $time_2nd, $data, $children)
{
$this->No = $No;
$this->Name = $name;
/trunk/jrest/lib/OLE/PPS/Root.php
51,10 → 51,10
* @param integer $time_1st A timestamp
* @param integer $time_2nd A timestamp
*/
function OLE_PPS_Root($time_1st, $time_2nd, $raChild)
function __construct($time_1st, $time_2nd, $raChild)
{
$this->_tmp_dir = @System::tmpdir();
$this->OLE_PPS(
parent::__construct(
null,
OLE::Asc2Ucs('Root Entry'),
OLE_PPS_TYPE_ROOT,
/trunk/jrest/lib/OLE/PPS/File.php
45,10 → 45,10
* @param string $name The name of the file (in Unicode)
* @see OLE::Asc2Ucs()
*/
function OLE_PPS_File($name)
function __construct($name)
{
$this->_tmp_dir = @System::tmpdir();
$this->OLE_PPS(
parent::__construct(
null,
$name,
OLE_PPS_TYPE_FILE,