magento 2カスタムモジュールで画像や動画をアップロードする方法


15

magento 2.1を使用しています

UIコンポーネントを使用して複数の画像と動画をアップロードする必要があります

同様にMagentoの管理者- >製品の展示- > caralog - >製品

ここに画像の説明を入力してください

これを達成するには何をする必要がありますか?


それでもM2はUI_Componentなしで「画像とビデオ」に古いスタイルのコードを使用しますか?これが必要ですか?
ソヘルラナ

回答:


7

最後に答えを得た

このモジュールを参照して、カスタムモジュールに実装します

以下の便利なコードを見つけてください:

以下の手順に従ってください

1)layout.xmlを作成します

[vendor]/[module]/operation/view/adminhtml/layout/layout_edit.xml

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">

    <body>
            <referenceContainer name="content">
                <uiComponent name="sample_form"/>
            </referenceContainer>
            <referenceContainer name="sample_form">
                <block name="gallery" class="[vendor]\[module]\Block\Adminhtml\Grid\Helper\Form\Gallery">
                    <arguments>
                        <argument name="config" xsi:type="array">
                            <item name="label" xsi:type="string" translate="true">Images</item>
                            <item name="collapsible" xsi:type="boolean">true</item>
                            <item name="opened" xsi:type="boolean">false</item>
                            <item name="sortOrder" xsi:type="string">22</item>
                            <item name="canShow" xsi:type="boolean">true</item>
                            <item name="componentType" xsi:type="string">fieldset</item>
                        </argument>
                    </arguments>
                    <block class="[vendor]\[module]\Block\Adminhtml\Grid\Helper\Form\Gallery\Content" as="content" template="[vendor]_[[module]::helper/gallery.phtml">
                        <arguments>
                            <argument name="config" xsi:type="array">
                                <item name="parentComponent" xsi:type="string">sample_form.sample_form.block_gallery.block_gallery</item>

                            </argument>
                        </arguments>

                    </block>
                </block>
            </referenceContainer>

    </body>
</page>

2)ヘルパーブロックを作成する

[vendor]/[module]/Block/Adminhtml/Grid/Helper/Form/Gallery.php

namespace [vendor]\[module]\Block\Adminhtml\Grid\Helper\Form;

use Magento\Framework\Registry;
use Magento\Catalog\Model\Product;
use Magento\Eav\Model\Entity\Attribute;
use Magento\Catalog\Api\Data\ProductInterface;

class Gallery extends \Magento\Catalog\Block\Adminhtml\Product\Helper\Form\Gallery
{
    /**
     * @var here you set your ui form 
     */
    protected $formName = 'sample_form';

}

3)ヘルパーフォームブロックを作成する

[vendor]\[module]\Block\Adminhtml\Grid\Helper\Form\Gallery\Content.php

namespace [vendor]\[module]\Block\Adminhtml\Grid\Helper\Form\Gallery;

use Magento\Framework\Data\Form\Element\AbstractElement;
use Magento\Backend\Block\Media\Uploader;
use Magento\Framework\View\Element\AbstractBlock;
use Magento\Framework\App\Filesystem\DirectoryList;

class Content extends \Magento\Catalog\Block\Adminhtml\Product\Helper\Form\Gallery\Content
{


    protected function _prepareLayout()
    {
        $this->addChild('uploader', 'Magento\Backend\Block\Media\Uploader');

        $a = $this->getUploader()->getConfig()->setUrl(
            $this->_urlBuilder->addSessionParam()->getUrl('[vendor]/grid_gallery/upload')/* here set you upload Controller */
        )->setFileField(
            'image'
        )->setFilters(
            [
                'images' => [
                    'label' => __('Images (.gif, .jpg, .png)'),
                    'files' => ['*.gif', '*.jpg', '*.jpeg', '*.png'],
                ],
            ]
        );

    }


    public function getImageTypes()
    {
        return '[]';
    }

    public function getMediaAttributes()
    {
        return '[]';
    }

}

:-両方のブロックの上に適切に拡張する必要があります

4)テンプレートを作成する

gallery.phtmlフォームvendor/magento/module-product-video/view/adminhtml/templates/helper/gallery.phtml をコピーして、モジュールの要件および害虫の標準値として変更する必要があります[vendor]/[module]/view/adminhtml/templates/helper/gallery.phtml

ヘルプが必要な場合はコメントでお知らせください


私は、OBJECTのDOM文書が作成されなければならないなどのエラー取得しています
Bビジェイ

@vijaybあなたはここで、このエラーを入れてくださいすることができます
Deexit Sanghani


@vijayb私はあなたのUIフォーム名ここで設定したように、UIフォームに取り組んであなたをホップprotected $formName = 'your_ui_form
Deexit Sanghani

私はanswer。
vijay b

0

Magento 2にビデオを追加するには、次の手順を実行する必要があります。

  1. Youtube APIキーを生成します。
  2. Youtube APIキーの統合
  3. Magento 2. YoutubeビデオURLの製品への統合。

0

Deexit Sanghaniからの回答は、magento2.2.2 vを使用しているため古くなっている可能性があり、xmlの場所は機能しません[vendor]/[module]/operation/view/adminhtml/layout/layout_edit.xmlが、他のすべても同様に適切に投票されます。そして、heresは私のために働いたもので../vendor/magento/module-product-video/view/adminhtml/ui_component/product_form.xmlあり、あなたのモジュールの場所を見てみましょう:add ../app/code/[vendor]/[module]/view/adminhtml/ui_component/your_ layout_edit.xml<form></form>

    <htmlContent name="gallery" sortOrder="22">
        <argument name="data" xsi:type="array">
            <item name="wrapper" xsi:type="array">
                <item name="label" xsi:type="string" translate="true">My Custom Images And Videos</item>
                <item name="collapsible" xsi:type="boolean">true</item>
                <item name="opened" xsi:type="boolean">false</item>
            </item>
        </argument>
        <settings>
            <wrapper>
                <canShow>true</canShow>
                <componentType>fieldset</componentType>
            </wrapper>
        </settings>
        <block name="gallery" class="[vendor]\[module]\Block\Adminhtml\[Entity]\Helper\Form\Gallery">
            <!--<arguments>
                <argument name="config" xsi:type="array">
                    <item name="label" xsi:type="string" translate="true">Images And Videos</item>
                    <item name="collapsible" xsi:type="boolean">true</item>
                    <item name="opened" xsi:type="boolean">false</item>
                    <item name="sortOrder" xsi:type="string">22</item>
                    <item name="canShow" xsi:type="boolean">true</item>
                    <item name="componentType" xsi:type="string">fieldset</item>
                </argument>
            </arguments>-->
            <block class="[vendor]\[module]\Block\Adminhtml\[Entity]\Helper\Form\Gallery\Content" as="content">
                <arguments>
                    <argument name="config" xsi:type="array">
                        <item name="parentComponent" xsi:type="string">ui_component_form.ui_component_form.block_gallery.block_gallery</item>
                    </argument>
                </arguments>
                <block class="Magento\ProductVideo\Block\Adminhtml\Product\Edit\NewVideo" name="new-video" template="Magento_ProductVideo::product/edit/slideout/form.phtml"/>
            </block>
        </block>
    </htmlContent> 

私は、..しかしない保存、データベースにまだ行に対して画像の追加カスタムロールなどをアップロードするために管理しています注:それはあなたのニーズに上書きニーズ、例えばのために働く作るために多くの注目を必要としgallery.pthmlgetImagesJson()getImageTypes()getMediaAttributes方法など。 。:そして、それは密接にネイティブMagentoのルックテーブルに似た同じパターンまたは以下のデータベース構造と一致する必要があり catalog_product_entity_media_gallery_valuecatalog_product_entity_media_gallerycatalog_product_entity_media_gallery_valueなどが...まだビデオに働いていません!

それが誰かを助けることを願っています!

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.