1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-07 13:46:42 +02:00

feat(entries): add ability to init custom macros and directives

This commit is contained in:
Awilum
2022-05-23 21:21:51 +03:00
parent 27fb8d8688
commit e7b10789be

View File

@@ -80,8 +80,8 @@ class Entries
$this->setRegistry($registry);
$this->setOptions($options);
$this->loadCollectionsDirectives();
$this->loadCollectionsMacros();
$this->initFieldsDirectives(registry()->get('flextype.settings.entries.directives'));
$this->initFieldsMacros(registry()->get('flextype.settings.entries.macros'));
$this->loadCollectionsEvents();
$this->loadCollectionsFields();
}
@@ -110,13 +110,15 @@ class Entries
}
/**
* Load Collections Macros
* Init Fields Macros
*
* @param array $macros Macros to init.
*
* @access public
*/
private function loadCollectionsMacros(): void
private function initFieldsMacros(array $macros): void
{
foreach (registry()->get('flextype.settings.entries.macros') as $key => $value) {
foreach ($macros as $key => $value) {
if ($key == 'debug') {
continue;
}
@@ -128,13 +130,15 @@ class Entries
}
/**
* Load Collections Directives
* Init Fields Directives
*
* @param array $directives Directives to init.
*
* @access public
*/
private function loadCollectionsDirectives(): void
private function initFieldsDirectives(array $directives): void
{
foreach (registry()->get('flextype.settings.entries.directives') as $key => $value) {
foreach ($directives as $key => $value) {
if (filesystem()->file(ROOT_DIR . $value['path'])->exists()) {
include_once ROOT_DIR . $value['path'];
}