HerrHase 6902826d15 | 3 years ago | |
---|---|---|
app | 3 years ago | |
public | 3 years ago | |
resources | 3 years ago | |
.env.example | 3 years ago | |
.gitignore | 3 years ago | |
README.md | 3 years ago | |
composer.json | 3 years ago | |
composer.lock | 3 years ago | |
package-lock.json | 3 years ago | |
package.json | 3 years ago | |
snapshot.yaml | 3 years ago | |
webpack.mix.js | 3 years ago |
Project to using a Directus Instance as CMS. Structure is inspired by Laravel, using FlightPHP for handle Request.
Download last Release, a Composer Installer will be Available in a Future Release.
There is a Snapshot for a Basic Setup for the Directus Instance.
Create a .env from .env.example adding token and url for Directus Instance.
DIRECTUS_API_URL=
DIRECTUS_API_TOKEN=
For getting Data use App\Respositories\RepositoryAbstract to create Repository-Classes. This is the default class to handle
class PageRepository extends RepositoryAbstract
{
/** endpoint */
protected $endpoint = 'pages';
/**
* find single page with a slug,
* page must be published
*
* @param string $slug
* @return array
*/
public function findOneBySlug($slug)
{
if (!$slug) {
$slug = [ '_null' => 'true' ];
}
return $this->queryBuilder
->fields(['title', 'slug', 'content', 'view', 'meta', 'media_teaser.*', 'media_hero.*'])
->aliases('view', 'template')
->filter([
'status' => 'published',
'slug' => $slug
])
->findOne();
}
}