ฉันพยายามสร้างโมดูลใหม่ในvendor
ไดเรกทอรีใน Magento Enterprise 2.0.0 ไม่สามารถโหลดโมดูลหลังจากที่ฉันเรียกใช้ Magento setup:upgrade
ได้
ถ้าฉันย้ายไฟล์ไปยังapp/code
ไดเรกทอรีโมดูลจะถูกตั้งค่าเรียบร้อยแล้ว
สำหรับ Magento 2 Enterprise edition โมดูลทั้งหมดอยู่ในvendor
ไดเร็กทอรี แต่ Community edition ใช้app/code
ไดเร็กทอรี ฉันสงสัยว่ามันเป็นไปได้ที่จะสร้างโมดูลที่กำหนดเองในvendor
ไดเรกทอรี ถ้าใช่สิ่งที่เป็นความแตกต่างระหว่างการสร้างโมดูลที่กำหนดเองในและapp/code
vendor
vendor/Test/Testing/registration.php
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Test_Testing',
__DIR__ );
vendor/Test/Testing/composer.json
{ "name": "test/testing", "description": "Testing", "require": {
"php": "~5.5.0|~5.6.0|~7.0.0",
"magento/framework": "100.0.*" }, "type": "magento2-module", "version": "0.1.0", "license": [
"proprietary" ], "autoload": {
"files": [ "registration.php" ],
"psr-4": {
"Test\\Testing\\": ""
} } }
vendor/Test/Testing/etc/module.xml
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Test_Testing" setup_version="0.1.0">
</module> </config>
Company\Reviews\Cron\Check
ในไฟล์/vendor/company/Reviews/Cron/Check.php
และฉันมี cronjob ชอบCompany\Reviews\Cron\Check
แต่ในฐานข้อมูลcron_schedule
มันก็บอกว่า "ชั้น บริษัท \ รีวิว \ Cron \ ตรวจสอบไม่อยู่"