You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
super-gear-directus/app/Repositories/SiteRepository.php

40 lines
813 B

<?php
namespace App\Repositories;
use App\Repositories\RepositoryAbstract;
/**
* request site singleton
*
* @author Björn Hase, Tentakelfabrik
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.tentakelfabrik.de/Tentakelfabrik/super-gear-directus
*
*/
class SiteRepository extends RepositoryAbstract
{
/** endpoint */
protected $endpoint = 'site';
/**
* find single page with a slug,
* page must be published
*
* @param string $slug
* @return array
*/
public function findOne()
{
return $this->queryBuilder
->fields([
'title',
'description',
'logo'
])
->aliases('logo[id]', 'logo')
->findOne();
}
}