首页 > 解决方案 > Magento 2.2.6 中这个文件在哪里被称为 vendor/magento/module-customer/Block/Adminhtml/Edit.php?

问题描述

对于管理客户视图页面,Magento 使用 UI 表单作为“customer_form”。我想知道其他标签是如何被称为“订单”、“愿望清单”、“时事通讯”的。这些不是 UI 表单或 UI 网格。

请帮助我,这些选项卡是如何在客户查看/编辑页面中实现的。

谢谢!!!

标签: magentomagento2

解决方案


看看vendor/magento/module-customer/Block/Adminhtml/Edit/Tab/然后例如Newsletter.php。Magento UI 通过

use Magento\Ui\Component\Layout\Tabs\TabInterface;

class Newsletter extends \Magento\Backend\Block\Widget\Form\Generic implements TabInterface

您可以在该类中找到选项卡的功能。


推荐阅读