前提・実現したいこと
下記を元にeccube4に送料の計算プラグインを導入しようとしています。
管理画面に「離島送料計算」の項目が追加されるところまで行きましたが、いざそのメニューをクリックするとエラーがでます。調べたところ誤記でもこのエラーが出るとのことで確認しましたが、みる限り無いように思えます。お力を貸していただければ幸いです。
参考ブログ
https://jum11.com/2020/12/27/ec-cube4-plugin-remoteisland-fee/
発生している問題・エラーメッセージ
The autoloader expected class "Plugin\RemoteIslandFeePlugin\Entity\RemoteIslandFee" to be defined in file "/Users/hirokazu0830/Web/workplace3/eccube-4.0.5/vendor/composer/../../app/Plugin/RemoteIslandFeePlugin/Entity/RemoteIslandFee.php". The file was found but the class was not in it, the class name or namespace probably has a typo.
該当のソースコード
<?php /* * This file is part of EC-CUBE * * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved. * * http://www.ec-cube.co.jp/ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Customize\Entity; use Doctrine\ORM\Mapping as ORM; if (!class_exists('\Customize\Entity\RemoteIslandFee')) { /** * RemoteIslandFee * * @ORM\Table(name="dtb_remote_island_fee") * @ORM\InheritanceType("SINGLE_TABLE") * @ORM\DiscriminatorColumn(name="discriminator_type", type="string", length=255) * @ORM\HasLifecycleCallbacks() * @ORM\Entity(repositoryClass="Customize\Repository\RemoteIslandFeeRepository") */ class RemoteIslandFee extends \Eccube\Entity\AbstractEntity { /** * @var int * * @ORM\Column(name="id", type="integer", options={"unsigned":true}) * @ORM\Id * @ORM\GeneratedValue(strategy="IDENTITY") */ private $id; /** * @var string|null * * @ORM\Column(name="fee", type="decimal", precision=12, scale=2) */ private $fee; /** * @var string|null * * @ORM\Column(name="remote_island_list", type="text", nullable=true) */ private $remote_island_list; /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Set fee. * * @param string|null $fee * * @return $this */ public function setFee($fee) { $this->fee = $fee; return $this; } /** * Get fee. * * @return string|null */ public function getFee() { return $this->fee; } /** * Set remote_island_list. * * @return $this */ public function setRemoteIslandList($remote_island_list) { $this->remote_island_list = $remote_island_list; return $this; } /** * Get remote_island_list. * * @return string|null */ public function getRemoteIslandList() { return $this->remote_island_list; } public function getPostalCodeLists() { $postalCodeList = $this->getRemoteIslandList(); $array = explode(',', $postalCodeList); return $array; } } } ### 試したこと 【1.urlのブログでは次のファイルの名前、ディレクトリに言及されていなかったので下記の通り配置、名前をつけています。】 Entityファイル ディレクトリ:app/Phugin/RemoteIslandFeePlugin/Entity ファイル名:RemoteIslandFee.php 【2. Entityファイルの90行目変更しました】 誤記かと思い this を $this に変更しています。 ### 補足情報(FW/ツールのバージョンなど) mamp 6.0.1 php 7.4.9 ec-cube 4.0.5回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/23 07:26
2022/08/26 00:38