53 lines
822 B
PHP
53 lines
822 B
PHP
<?php
|
|
class FileMaker_Result_Implementation
|
|
{
|
|
var $_fm;
|
|
var $_layout;
|
|
var $_records;
|
|
var $_tableCount;
|
|
var $_foundSetCount;
|
|
var $_fetchCount;
|
|
function FileMaker_Result_Implementation(&$V0ab34ca9)
|
|
{
|
|
$this->_fm = &$V0ab34ca9;
|
|
}
|
|
function &getLayout()
|
|
{
|
|
return $this->_layout;
|
|
}
|
|
function &getRecords()
|
|
{
|
|
return $this->_records;
|
|
}
|
|
function getFields()
|
|
{
|
|
return $this->_layout->listFields();
|
|
}
|
|
function getRelatedSets()
|
|
{
|
|
return $this->_layout->listRelatedSets();
|
|
}
|
|
function getTableRecordCount()
|
|
{
|
|
return $this->_tableCount;
|
|
}
|
|
function getFoundSetCount()
|
|
{
|
|
return $this->_foundSetCount;
|
|
}
|
|
function getFetchCount()
|
|
{
|
|
return $this->_fetchCount;
|
|
}
|
|
|
|
function getFirstRecord()
|
|
{
|
|
return $this->_records[0];
|
|
}
|
|
|
|
function getLastRecord()
|
|
{
|
|
return $this->_records[sizeof($this->_records)-1];
|
|
}
|
|
}
|