mirror of
https://github.com/friendica/friendica
synced 2025-03-26 01:21:26 +00:00
92 lines
1.3 KiB
PHP
92 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Object\Search;
|
|
|
|
use Friendica\Model\Search;
|
|
|
|
/**
|
|
* A list of search results with metadata
|
|
*
|
|
* @see Search for details
|
|
*/
|
|
class ResultList
|
|
{
|
|
/**
|
|
* Page of the result list
|
|
* @var int
|
|
*/
|
|
private $page;
|
|
/**
|
|
* Total count of results
|
|
* @var int
|
|
*/
|
|
private $total;
|
|
/**
|
|
* items per page
|
|
* @var int
|
|
*/
|
|
private $itemsPage;
|
|
/**
|
|
* Array of results
|
|
*
|
|
* @var IResult[]
|
|
*/
|
|
private $results;
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getPage()
|
|
{
|
|
return $this->page;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getTotal()
|
|
{
|
|
return $this->total;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getItemsPage()
|
|
{
|
|
return $this->itemsPage;
|
|
}
|
|
|
|
/**
|
|
* @return IResult[]
|
|
*/
|
|
public function getResults()
|
|
{
|
|
return $this->results;
|
|
}
|
|
|
|
/**
|
|
* @param int $page
|
|
* @param int $total
|
|
* @param int $itemsPage
|
|
* @param IResult[] $results
|
|
*/
|
|
public function __construct($page = 0, $total = 0, $itemsPage = 0, array $results = [])
|
|
{
|
|
$this->page = $page;
|
|
$this->total = $total;
|
|
$this->itemsPage = $itemsPage;
|
|
|
|
$this->results = $results;
|
|
}
|
|
|
|
/**
|
|
* Adds a result to the result list
|
|
*
|
|
* @param IResult $result
|
|
*/
|
|
public function addResult(IResult $result)
|
|
{
|
|
$this->results[] = $result;
|
|
}
|
|
}
|