从不同的文件 [MAGENTO2] 将变量添加到registration.php

Posted

技术标签:

【中文标题】从不同的文件 [MAGENTO2] 将变量添加到registration.php【英文标题】:Adding variable to registration.php from different file [MAGENTO2] 【发布时间】:2022-01-15 07:01:53 【问题描述】:

我是 php 和 Magento2 的新手(我来自 C++)。我只是想将不同文件中的变量添加到registration.php

但我似乎无法获取其他文件。 另一个文件位于 app/code///myCode/myFile.php。

并且注册在app/code///registration.php.

那么我将如何从registration.php 中访问这个其他文件?

【问题讨论】:

【参考方案1】:

我有这种方法,像这样:

<?php
/**
 * Gateway Payloan integration module for Magento 2.
 * All rights reserved.
 *
 * @copyright  Copyright (c) 2020.
 */
use \Magento\Framework\Component\ComponentRegistrar;

ComponentRegistrar::register(
    ComponentRegistrar::MODULE,
    'Vendor_Payloan',
    __DIR__
);

require_once __DIR__ . "/Library/RequiredFile.php";

注意最后一行,在你的情况下,它可能像:

require_once __DIR__ . "/myCode/myFile.php";

【讨论】:

以上是关于从不同的文件 [MAGENTO2] 将变量添加到registration.php的主要内容,如果未能解决你的问题,请参考以下文章

在magento2中添加一个新主题

将条件变量添加到 R 中的随机森林模型

R - 导入和合并多个 Excel 文件并添加文件源变量

直接将 Magento 2.1.5 升级到 2.3

在 R 中查看图表后如何添加单个数据点

无法在 magento2 中添加新产品