93 lines
2.4 KiB
PHP
93 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace Friendica\Repository;
|
|
|
|
use Friendica\BaseRepository;
|
|
use Friendica\Collection;
|
|
use Friendica\Model;
|
|
|
|
class FSuggest extends BaseRepository
|
|
{
|
|
protected static $table_name = 'fsuggest';
|
|
|
|
protected static $model_class = Model\FSuggest::class;
|
|
|
|
protected static $collection_class = Collection\FSuggests::class;
|
|
|
|
/**
|
|
* @param array $data
|
|
* @return Model\FSuggest
|
|
*/
|
|
protected function create(array $data)
|
|
{
|
|
return new Model\FSuggest($this->dba, $this->logger, $data);
|
|
}
|
|
|
|
/**
|
|
* Returns the Friend Suggest based on it's ID
|
|
*
|
|
* @param int $id The id of the fsuggest
|
|
*
|
|
* @return Model\FSuggest
|
|
*
|
|
* @throws \Friendica\Network\HTTPException\NotFoundException
|
|
*/
|
|
public function getById(int $id)
|
|
{
|
|
return $this->selectFirst(['id' => $id]);
|
|
}
|
|
|
|
/**
|
|
* @param array $condition
|
|
* @return Model\FSuggest
|
|
* @throws \Friendica\Network\HTTPException\NotFoundException
|
|
*/
|
|
public function selectFirst(array $condition)
|
|
{
|
|
return parent::selectFirst($condition);
|
|
}
|
|
|
|
/**
|
|
* @param array $condition
|
|
* @param array $params
|
|
* @return Collection\FSuggests
|
|
* @throws \Exception
|
|
*/
|
|
public function select(array $condition = [], array $params = [])
|
|
{
|
|
return parent::select($condition, $params);
|
|
}
|
|
|
|
/**
|
|
* @param array $condition
|
|
* @param array $params
|
|
* @param int|null $min_id
|
|
* @param int|null $max_id
|
|
* @param int $limit
|
|
* @return Collection\FSuggests
|
|
* @throws \Exception
|
|
*/
|
|
public function selectByBoundaries(array $condition = [], array $params = [], int $min_id = null, int $max_id = null, int $limit = self::LIMIT)
|
|
{
|
|
return parent::selectByBoundaries($condition, $params, $min_id, $max_id, $limit);
|
|
}
|
|
}
|