1

Customer::loadByEmail()Magento 2 モジュールを作成して、デフォルトのクラスとメソッドを追加のロジックで拡張しようとしています。

私のモジュールにはいくつかの異なるクラス/ファイルが含まれているため、この投稿を大量のコードで汚染するのではなく、コードを含むパブリック Gist を作成しました。

完全なコード: https://gist.github.com/JasonMortonNZ/90ada76ad5511a37d2c6

また、参考までに、すべてのコードはフォルダにありますproject-root/app/code/Jason/OCUsers

何が機能していますか:

  • magento module:statusコマンドラインからコマンドを実行すると、モジュールが Magento で認識されます。
  • 移行 (スキーマのアップグレード) が実行されていないように見えますが、モジュールを正常に有効化および無効化できます。

機能していないもの:

  • インストールおよびアップグレード時のスキーマの更新が機能していないようです。データベース スキーマの更新は保持されず、有効になりません。
  • Customer私が作成した新しいクラスとloadByEmailメソッドがヒットしていないため、DI が正しくないように見えます。

これらの問題のカップルが発生している理由についての助けや提案は大歓迎です:)

モジュール.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="Jason_OCUser" setup_version="2.0.0"/>
    <sequence>
        <module name="Magento_Customer"/>
    </sequence>
</config>

di.xml

<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
    <preference for="Magento\Customer\Api\Data\CustomerInterface" type="Jason\OCUser\Model\Customer" />
    <type name="Magento\Framework\Model\ActionValidator\RemoveAction">
        <arguments>
            <argument name="protectedModels" xsi:type="array">
                <item name="customer" xsi:type="string">Jason\OCUser\Model\Customer</item>
            </argument>
        </arguments>
    </type>
</config>

Customer.php

<?php
namespace Jason\OCUser\Model;

use Magento\Customer\Model\Customer as MCustomer;

class Customer extends MCustomer
{
    /**
     * Load customer by email
     *
     * @param   string $customerEmail
     * @return  $this
     */
    public function loadByEmail($customerEmail)
    {
        die('Not reaching this :( ');
    }
}

InstallSchema.php

<?php

namespace Jason\OCUser\Setup;

use Magento\Framework\DB\Ddl\Table;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\SchemaSetupInterface;
use Magento\Framework\Setup\InstallSchemaInterface;

class InstallSchema implements InstallSchemaInterface
{

    /**
     * Installs DB schema for a module
     *
     * @param SchemaSetupInterface $setup
     * @param ModuleContextInterface $context
     * @return void
     */
    public function install(SchemaSetupInterface $setup, ModuleContextInterface $context)
    {

        $installer = $setup;

        $installer->startSetup();

        /**
         * Add salt column and oc user status
         */
        $installer->getConnection()->addColumn(
            'customer_entity',
            'oc_salt',
            [
                'type' => Table::TYPE_TEXT,
                'nullable' => true,
                'default' => null,
                'length' => 9,
                'comment' => ''
            ]
        );

        $installer->getConnection()->addColumn(
            'customer_entity',
            'oc_user',
            [
                'type' => Table::TYPE_BOOLEAN,
                'nullable' => false,
                'default' => 0,
                'comment' => ''
            ]
        );

        $installer->endSetup();
    }
}
4

1 に答える 1

0

あなたdi.xmlは間違っているようです。タグのfor属性を参照してください。preferenceに置き換えた以下を参照Magento\Customer\Api\Data\CustomerInterfaceしてくださいMagento\Customer\Model\Customer

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
    <preference for="Magento\Customer\Model\Customer" type="Jason\OCUser\Model\Customer" />
    <type name="Magento\Framework\Model\ActionValidator\RemoveAction">
        <arguments>
            <argument name="protectedModels" xsi:type="array">
                <item name="customer" xsi:type="string">Jason\OCUser\Model\Customer</item>
            </argument>
        </arguments>
    </type>
</config>
于 2015-11-30T22:07:15.120 に答える