fipamo/app/Interfaces/PageRepositoryInterface.php
ro cb99c44a33
implemented dynamic page rendering
html page rendering works, so the next step was to get dynamic page
rendering up and running, meaning instead of pages being exported to
html, they are instead rendered on the fly when the corresponding URL is
hit.

the StartController that handles page routing needs to be organized a
bit better as there is some confusion between index and regular page
files so it's clear where requests are going and what is the expected
response
2024-05-06 15:09:24 -06:00

21 lines
340 B
PHP

<?php
namespace App\Interfaces;
interface PageRepositoryInterface
{
public function getAll();
public function getByID($uuid);
public function getBySlug($slug);
public function delete($uuid);
public function create($page);
public function update($page);
public function getGroup($num, $limit, $filter);
}