有没有办法从其他组件或其他插件访问部分内容?
我有一个模态组件显示某种消息。现在我有另一个组件在模态对话框中显示复杂的表单。它们位于2个插件中。
答案 0 :(得分:2)
是的,在插件组件中,您可以从同一插件中的另一个组件(您设置共享部分)以及其他插件中的组件和部分访问部分内容。
要访问同一插件中组件之间的共享部分,see this section of the docs.:
多个组件可以通过放置部分文件来共享部分内容 一个名为
components/partials
的目录。在此发现的部分 目录用作常用组件部分的后备 无法找到。例如,位于的共享部分 可以显示/plugins/acme/blog/components/partials/shared.htm
任何组件使用的页面:{% partial '@shared' %}
要从组件插件中的其他插件访问组件或部分,请参阅以下Foo
和Bar
插件的示例:
plugins/montanabanana/foo/Plugin.php:
<?php namespace MontanaBanana\Foo;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function registerComponents()
{
return [
'MontanaBanana\Foo\Components\Thud' => 'thud'
];
}
public function registerSettings()
{
}
}
plugins/montanabanana/foo/components/Thud.php
<?php
namespace MontanaBanana\Foo\Components;
class Thud extends \Cms\Classes\ComponentBase
{
public function componentDetails()
{
return [
'name' => 'Thud Component',
'description' => ''
];
}
}
plugins/montanabanana/foo/components/thud/default.htm
<pre>Thud component, default.htm</pre>
plugins/montanabanana/foo/components/thud/partial.htm
<pre>This is the thud partial</pre>
好的,我们已经设置了注册Thud组件的Foo插件。该组件中包含一些基本的默认标记以及组件文件夹中的部分标记。现在,让我们设置另一个插件,其中包含可以使用此组件的组件Grunt
和来自Thud
的部分Foo
:
plugins/montanabanana/bar/Plugin.php
<?php namespace MontanaBanana\Bar;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
// We should require the plugin we are pulling from
public $require = ['MontanaBanana.Foo'];
public function registerComponents()
{
return [
'MontanaBanana\Bar\Components\Grunt' => 'grunt'
];
}
public function registerSettings()
{
}
}
plugins/montanabanana/bar/components/grunt/default.htm
<pre>Grunt component, default.htm</pre>
{% component 'thud' %}
{% partial 'thud::partial' %}
请注意,在Bar的Grunt组件的上述组件默认标记文件中,我们从Thud组件中调用了Thud组件和partial.htm
部分。
我们还没有完成,我很确定必须以这种方式完成(尽管可能有更优雅的方式我不知道),但我们已经定义了两个组件在页面上我们想要来自:
themes/your-theme/pages/example.htm
title = "Example"
url = "/example"
[grunt]
[thud]
==
{% component 'grunt' %}
其输出为:
<pre>Grunt component, default.htm</pre>
<pre>Thud component, default.htm</pre>
<pre>This is the thud partial</pre>
我不完全理解你在问题的第二部分中提出的问题,但希望以上内容可以帮助你解决问题。