magento 2 özel modülde resim ve video yükleme


15

Magento 2.1 kullanıyorum

Kullanıcı arabirimi bileşenini kullanarak birden fazla resim ve video yüklemem gerekiyor

Gibi magento-yönetici -> Ürünler -> caralog -> Ürün

resim açıklamasını buraya girin

bunu başarmak için ne yapmam gerekiyor?


Hala M2, UI_Component olmadan 'Görüntü ve Video' için eski stil kodunu kullanıyor mu? Buna ihtiyacın var mı?
Sohel Rana

Yanıtlar:


7

Sonunda cevabı aldım

Bu modülü referans alıyorum ve özel modülüme uyguluyorum

Yararlı kodu aşağıda bulabilirsiniz:

aşağıdaki adımları takip etmek

1) layout.xml oluşturun

[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) Yardımcı blok oluştur

[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) Yardımcı form bloğu oluşturun

[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 '[]';
    }

}

Not : - her iki bloğun üzerine düzgün bir şekilde uzanmalısınız

4) Şablon oluşturma

Gallery.phtml formunu kopyalamalı vendor/magento/module-product-video/view/adminhtml/templates/helper/gallery.phtml ve modülünüzdeki gereksinim ve haşereye göre değiştirmelisiniz[vendor]/[module]/view/adminhtml/templates/helper/gallery.phtml

Herhangi bir yardıma ihtiyacınız olursa lütfen yorumda bana bildirin


NESNE DOM belgesi oluşturulması gerektiği gibi hata alıyorum
vijay b

@vijayb lütfen bu hatayı buraya koyabilir misiniz
Deexit Sanghani


@vijayb Ui form üzerinde çalıştığınızı umuyorum, bu yüzden burada UI form adınızı ayarlayınprotected $formName = 'your_ui_form
Deexit Sanghani

i tam olarak answer.do açıklandığı gibi her adımı izledi biz Ui Bileşeni tanımlamak için başka bir dosya oluşturmak zorunda ??
vijay b

0

Magento 2'ye video eklemek için şu adımları izlemelisiniz:

  1. Bir Youtube API Anahtarı oluşturun.
  2. Youtube API anahtarının
  3. Magento 2. Youtube Video URL'sinin Ürüne entegrasyonu.

0

Deexit Sanghani'den cevap ben magento2.2.2 v kullanıyorum tarihli olabilir ve xml din't konum benim için çalışmıyor [vendor]/[module]/operation/view/adminhtml/layout/layout_edit.xmlama her şey hakkında doğru kadar o kadar da oy. Ve heres benim için işe yarayan bir göz atın ../vendor/magento/module-product-video/view/adminhtml/ui_component/product_form.xmlve modül konum: eklenti ../app/code/[vendor]/[module]/view/adminhtml/ui_component/your_ layout_edit.xmliçinde <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> 

Ben vb görüntü eklenti özel roller yüklemek yönetmek .. ama bir satır, karşı henüz veritabanında kaydetme NOT: O ihtiyaçlarınız için çalışır hale getirmek için çok dikkat ihtiyacı ihtiyaçlarınıza üzerine yazma örneğin gallery.pthml, getImagesJson(), getImageTypes(), getMediaAttributesvb yöntemler .. .: ve daha sonra ihtiyacı yakından yerli magento görünüm tablosuna benzer aynı desenleri veya aşağıdaki veritabanı yapısını maçları catalog_product_entity_media_gallery_value, catalog_product_entity_media_gallery, catalog_product_entity_media_gallery_valuevb ... Var videoda çalıştı henüz!

Umarım birine yardım eder!

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.