Skip to content

Add namespace loader #320

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

alexander-schranz
Copy link

This introduce a namespace loader. This allows to use a namespace like app:: similar to Plates and Blade template engine.

Usage:

    $defaultLoader = new FileLoader(__DIR__ . '/templates');
    $emailLoader = new FileLoader(__DIR__ . '/emails');
    $someLoader = new FileLoader(__DIR__ . '/vendor/some/some/templates');
    $otherLoader = new StringLoader(['main' => 'othercontent']);

    $loader = new NamespaceLoader([
        '' => $defaultLoader,
        'email' => $emailLoader,
        'some' => $someLoader,
        'other' => $otherLoader,
    ]);

This way it is very flexible as we can use any loader again.

@alexander-schranz alexander-schranz force-pushed the feature/namespace-loader branch 2 times, most recently from 91639ac to d8ea450 Compare November 1, 2022 15:57
@alexander-schranz alexander-schranz changed the title Feature/namespace loader Add namespace loader Nov 1, 2022
@alexander-schranz
Copy link
Author

alexander-schranz commented Nov 5, 2022

@dg looks like you rebased it. Do I need to change the target branch?

Edit: Oh my fault looks like the master was force pushed to another state. I will rebase my branch.

@dg dg force-pushed the master branch 6 times, most recently from 6baf2c5 to 4db7a55 Compare October 8, 2024 00:59
@dg dg force-pushed the master branch 2 times, most recently from 1924c43 to 7b397b4 Compare February 26, 2025 06:42
@dg dg force-pushed the master branch 4 times, most recently from fec0858 to 9302610 Compare May 17, 2025 06:00
@dg dg force-pushed the master branch 3 times, most recently from db53197 to 2f4b18a Compare June 24, 2025 15:42
@dg dg force-pushed the master branch 14 times, most recently from 0716cd8 to a24efec Compare July 17, 2025 01:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants