首页 > 解决方案 > 覆盖 bolt.cms 中的后端模板

问题描述

我正在尝试覆盖位于vendor/bolt/bolt/app/view/twig/editcontent/fields/_block.twig(我想替换“块选择”下拉菜单)的模板文件。关于#1173#1269#5588#3768#5102默认情况下不支持,所以我必须为此编写扩展名。所以我尝试了这个:

后端块选择扩展

namespace Bundle\Site;

use Bolt\Filesystem\Adapter\Local;
use Bolt\Filesystem\Filesystem;
use Silex\Application;
use Bolt\Extension\SimpleExtension;

class BackendBlockSelectionExtension extends SimpleExtension
{
    public function getServiceProviders()
    {
        return [
            $this,
            new BackendBlockSelectionProvider(),
        ];
    }
}

后端块选择提供者

namespace Bundle\Site;

use Bolt\Filesystem\Adapter\Local;
use Bolt\Filesystem\Filesystem;
use Silex\Application;
use Silex\ServiceProviderInterface;

class BackendBlockSelectionProvider implements ServiceProviderInterface
{
    public function register(Application $app)
    {
        $side = $app['config']->getWhichEnd();

        if ($side == 'backend') {
            $path       = __DIR__ . '/App/templates/Backend';
            $filesystem = $app['filesystem'];

            $filesystem->mountFilesystem('bolt', new Filesystem(new Local($path)));

            $app['twig.loader.bolt_filesystem'] = $app->share(
                $app->extend(
                    'twig.loader.bolt_filesystem',
                    function ($filesystem, $app) {
                        $path = __DIR__ . 'src/App/templates/Backend/';

                        $filesystem->prependPath($path, 'bolt');

                        return $filesystem;
                    }
                )
            );
        }
    }

    public function boot(Application $app)
    {
    }
}

这似乎可以完成这项工作,但我遇到了一个我根本不明白的错误:The "bolt://app/theme_defaults" directory does not exist.

我遇到的错误

所以我的最后一个问题是:有没有人有一些示例代码如何在vendor/bolt/bolt/app/view/twig/editcontent/fields/_block.twig不触及vendor文件夹的情况下覆盖/修改?

标签: twigbolt-cms

解决方案


这应该比这简单得多。

在您的扩展类覆盖protected function registerTwigPaths()函数中,如下所示:

protected function registerTwigPaths()
{
    if ($this->getEnd() == 'backend') {
        return [
            'view' => ['position' => 'prepend', 'namespace' => 'bolt']
        ];
    }
    return [];
}

private function getEnd()
{
    $backendPrefix = $this->container['config']->get('general/branding/path');
    $end = $this->container['config']->getWhichEnd();

    switch ($end) {
        case 'backend':
            return 'backend';
        case 'async':
            // we have async request
            // if the request begin with "/admin" (general/branding/path)
            // it has been made on backend else somewhere else
            $url = '/' . ltrim($_SERVER['REQUEST_URI'], $this->container['paths']['root']);
            $adminUrl = '/' . trim($backendPrefix, '/');
            if (strpos($url, $adminUrl) === 0) {
                return 'backend';
            }
        default:
            return $end;
    }
}

现在您可以在您的扩展目录中创建一个视图目录,您可以在其中定义模板的结构,如 Bolt 的默认值。我将从复制和覆盖开始。


推荐阅读