我检查了一些与此相关的答案,但不确定我在做什么错。我创建了一个自定义视图文件
custom / modules / strg_storage / views / view.bulkstorageedit.php
require_once 'include/MVC/View/views/view.edit.php';
class strg_storageViewBulkstorageEdit extends ViewEdit
{
function display() {
echo "Aloha!";
parent::display();
}
}
然后使用以下方式注册它:
modules / strg_storage / Ext / ActionViewMap / bulkstorageedit.php
$action_view_map['bulkstorageedit'] = 'bulkstorageedit';
当我导航到新视图时,它就可以很好地加载,但是我似乎无法指定自定义元数据文件。
我创建了以下内容:
strg_storage / metadata / bulkstorageeditviewdefs.php并填充以下内容:
$viewdefs ['strg_storage'] =
array (
'bulkstorageedit' =>
我假设是导致问题的原因是'bulkstorageedit'=>,但我尝试了在阳光下的所有可能组合,但该视图只是忽略了该文件并使用了“默认”自定义/模块/ strg_storage /元数据/detailviewdefs.php代替...
非常感谢您的帮助