Primo commit: trasferimento del progetto PPEasy

This commit is contained in:
2024-09-18 10:30:50 +02:00
commit eb475f257e
4233 changed files with 1043848 additions and 0 deletions
@@ -0,0 +1,52 @@
<?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];
}
}