funky-framadate-front/app/classes/Framadate/Services/SuperAdminService.php
Yannick Francois 50e56a0396 Récupère l'ancien framadate
à la racine, quand on lance le serveur, on a le framadate tel qu'il est aujourd'hui

en ajoutant  sur l'url, on accède à la maquette interactive dans son état actuel
2018-11-30 11:20:25 +01:00

35 lines
1.0 KiB
PHP

<?php
namespace Framadate\Services;
use Framadate\Repositories\RepositoryFactory;
/**
* The class provides action for application administrators.
*
* @package Framadate\Services
*/
class SuperAdminService {
private $pollRepository;
function __construct() {
$this->pollRepository = RepositoryFactory::pollRepository();
}
/**
* Return the list of all polls.
*
* @param array $search Array of search : ['id'=>..., 'title'=>..., 'name'=>..., 'mail'=>...]
* @param int $page The page index (O = first page)
* @param int $limit The limit size
* @return array ['polls' => The {$limit} polls, 'count' => Entries found by the query, 'total' => Total count]
*/
public function findAllPolls($search, $page, $limit) {
$start = $page * $limit;
$polls = $this->pollRepository->findAll($search, $start, $limit);
$count = $this->pollRepository->count($search);
$total = $this->pollRepository->count();
return ['polls' => $polls, 'count' => $count, 'total' => $total];
}
}