Jak mogę dodać przycisk w sekcji konfiguracji zaplecza Magento 2 i wywołać prostą metodę PHP po kliknięciu przycisku?
To wywołanie metody może być wywołaniem AJAX.
Opiszemy to rozwiązanie za pomocą naszego modułu Inne kupione jako przykład, w którym MageWorx - nazwa dostawcy, a także EvenBought - nazwa modułu:
Najpierw musisz dodać przycisk jako pole w pliku konfiguracyjnym. (mageworx_collect jako przykład):
app / code / MageWorx / AlsoBought / etc / adminhtml / system.xml
<?xml version="1.0"?>
<!--
/**
* Copyright © 2016 MageWorx. All rights reserved.
* See LICENSE.txt for license details.
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
<system>
<tab id="mageworx" sortOrder="2001">
<label>MageWorx</label>
</tab>
<section id="mageworx_alsobought" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="0">
<label>Also Bought</label>
<tab>mageworx</tab>
<resource>MageWorx_AlsoBought::config</resource>
<group id="general" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
<label>General</label>
<field id="mageworx_collect" translate="label comment" type="button" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="0">
<frontend_model>MageWorx\AlsoBought\Block\System\Config\Collect</frontend_model>
<label>Collect all available data (in separate table)</label>
</field>
</group>
</section>
</system>
</config>
Aby narysować ten przycisk pola, MageWorx\AlsoBought\Block\System\Config\Collect
użyty zostanie model interfejsu . Stwórz To:
app / code / MageWorx / AlsoBought / Block / System / Config / Collect.php
<?php
/**
* Copyright © 2016 MageWorx. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace MageWorx\AlsoBought\Block\System\Config;
use Magento\Backend\Block\Template\Context;
use Magento\Config\Block\System\Config\Form\Field;
use Magento\Framework\Data\Form\Element\AbstractElement;
class Collect extends Field
{
/**
* @var string
*/
protected $_template = 'MageWorx_AlsoBought::system/config/collect.phtml';
/**
* @param Context $context
* @param array $data
*/
public function __construct(
Context $context,
array $data = []
) {
parent::__construct($context, $data);
}
/**
* Remove scope label
*
* @param AbstractElement $element
* @return string
*/
public function render(AbstractElement $element)
{
$element->unsScope()->unsCanUseWebsiteValue()->unsCanUseDefaultValue();
return parent::render($element);
}
/**
* Return element html
*
* @param AbstractElement $element
* @return string
*/
protected function _getElementHtml(AbstractElement $element)
{
return $this->_toHtml();
}
/**
* Return ajax url for collect button
*
* @return string
*/
public function getAjaxUrl()
{
return $this->getUrl('mageworx_alsobought/system_config/collect');
}
/**
* Generate collect button html
*
* @return string
*/
public function getButtonHtml()
{
$button = $this->getLayout()->createBlock(
'Magento\Backend\Block\Widget\Button'
)->setData(
[
'id' => 'collect_button',
'label' => __('Collect Data'),
]
);
return $button->toHtml();
}
}
?>
To typowy model polowy. Przycisk jest rysowany za pomocą getButtonHtml()
metody. Użyj getAjaxUrl()
metody, aby uzyskać adres URL.
Następnie potrzebujesz szablonu:
app / code / MageWorx / AlsoBought / view / adminhtml / templates / system / config / collect.phtml
<?php
/**
* Copyright © 2016 MageWorx. All rights reserved.
* See LICENSE.txt for license details.
*/
?>
<?php /* @var $block \MageWorx\AlsoBought\Block\System\Config\Collect */ ?>
<script>
require([
'jquery',
'prototype'
], function(jQuery){
var collectSpan = jQuery('#collect_span');
jQuery('#collect_button').click(function () {
var params = {};
new Ajax.Request('<?php echo $block->getAjaxUrl() ?>', {
parameters: params,
loaderArea: false,
asynchronous: true,
onCreate: function() {
collectSpan.find('.collected').hide();
collectSpan.find('.processing').show();
jQuery('#collect_message_span').text('');
},
onSuccess: function(response) {
collectSpan.find('.processing').hide();
var resultText = '';
if (response.status > 200) {
resultText = response.statusText;
} else {
resultText = 'Success';
collectSpan.find('.collected').show();
}
jQuery('#collect_message_span').text(resultText);
var json = response.responseJSON;
if (typeof json.time != 'undefined') {
jQuery('#row_mageworx_alsobought_general_collect_time').find('.value .time').text(json.time);
}
}
});
});
});
</script>
<?php echo $block->getButtonHtml() ?>
<span class="collect-indicator" id="collect_span">
<img class="processing" hidden="hidden" alt="Collecting" style="margin:0 5px" src="<?php echo $block->getViewFileUrl('images/process_spinner.gif') ?>"/>
<img class="collected" hidden="hidden" alt="Collected" style="margin:-3px 5px" src="<?php echo $block->getViewFileUrl('images/rule_component_apply.gif') ?>"/>
<span id="collect_message_span"></span>
</span>
Będziesz musiał przepisać część kodu zgodnie ze swoimi potrzebami, ale zostawię to jako przykład. Metoda żądania Ajax onCreate
i onSuccess
powinna odpowiadać Twoim potrzebom. Możesz także usunąć <span class="collect-indicator" id="collect_span">
element. Używamy go do wyświetlania obciążenia (pokrętła) i wyniku akcji.
Potrzebny będzie również kontroler, w którym będą przetwarzane wszystkie wymagane operacje, oraz router.
app / code / MageWorx / AlsoBought / etc / adminhtml / tras.xml
<?xml version="1.0"?>
<!--
/**
* Copyright © 2016 MageWorx. All rights reserved.
* See LICENSE.txt for license details.
*/
-->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="admin">
<route id="mageworx_alsobought" frontName="mageworx_alsobought">
<module name="MageWorx_AlsoBought" before="Magento_Backend" />
</route>
</router>
</config>
app / code / MageWorx / AlsoBought / Controller / Adminhtml / System / Config / Collect.php
<?php
/**
* Copyright © 2016 MageWorx. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace MageWorx\AlsoBought\Controller\Adminhtml\System\Config;
use Magento\Backend\App\Action;
use Magento\Backend\App\Action\Context;
use Magento\Framework\Controller\Result\JsonFactory;
use MageWorx\AlsoBought\Helper\Data;
class Collect extends Action
{
protected $resultJsonFactory;
/**
* @var Data
*/
protected $helper;
/**
* @param Context $context
* @param JsonFactory $resultJsonFactory
* @param Data $helper
*/
public function __construct(
Context $context,
JsonFactory $resultJsonFactory,
Data $helper
)
{
$this->resultJsonFactory = $resultJsonFactory;
$this->helper = $helper;
parent::__construct($context);
}
/**
* Collect relations data
*
* @return \Magento\Framework\Controller\Result\Json
*/
public function execute()
{
try {
$this->_getSyncSingleton()->collectRelations();
} catch (\Exception $e) {
$this->_objectManager->get('Psr\Log\LoggerInterface')->critical($e);
}
$lastCollectTime = $this->helper->getLastCollectTime();
/** @var \Magento\Framework\Controller\Result\Json $result */
$result = $this->resultJsonFactory->create();
return $result->setData(['success' => true, 'time' => $lastCollectTime]);
}
/**
* Return product relation singleton
*
* @return \MageWorx\AlsoBought\Model\Relation
*/
protected function _getSyncSingleton()
{
return $this->_objectManager->get('MageWorx\AlsoBought\Model\Relation');
}
protected function _isAllowed()
{
return $this->_authorization->isAllowed('MageWorx_AlsoBought::config');
}
}
?>
PS To jest przykład roboczy z naszego modułu MageWorx Inni kupili także . Jeśli chcesz się tego nauczyć, możesz pobrać go za darmo.
Controller/Adminhtml/System/Config/Collection.php
?Sprawdzasz to również w dostawcy / magento / module-customer / etc / adminhtml / system.xml dla przycisku. Pod kodem zaznacz go powyżej ścieżki. Utwórz model frontend, taki jak ten dostawca / magento / module-customer / Block / Adminhtml / System / Config / Validatevat.php .
Powyżej ścieżki w celach informacyjnych. Teraz utwórz odpowiednie dla własnego modułu.
źródło
Aby dodać przycisk w konfiguracji systemu i uruchomić niestandardową funkcję, musisz utworzyć,
frontend_model
aby wyrenderować swój przycisk. W szabloniefrontend_model
możesz napisać swoją logikę ajax.Oto przykład:
Ta klasa będzie odpowiedzialna za renderowanie przycisku HTML.
getButtonHtml()
funkcja wygeneruje przycisk HTML.Tutaj mamy
frontend_model
przycisk do renderowania. Teraz musimy utworzyć klasę kontrolera, która będzie obsługiwać nasze żądanie ajax.Mamy funkcję
getAjaxSyncUrl()
w naszymfrontend_model
że powróci url tego sterownika. Ponadto, jest zmienna$_template
wfrontend_model
który przechowuje ścieżkę nasz plik szablonu dla naszego renderujący.Możesz zobaczyć w szablonie, po kliknięciu przycisku, wywoła żądanie ajax do kontrolera zdefiniowanego w
forntend_model
.Mam nadzieję, że to pomoże.
źródło
Musisz zdefiniować niestandardowe
frontend_model
niestandardowe pole renderowania w konfiguracji. Możesz skorzystać z pomocy tego linku .źródło
Aby utworzyć przycisk w sekcji konfiguracji zaplecza, musisz wykonać następujące kroki:
Krok 1: Dodaj pole jest przyciskiem w pliku,
system.xml
takim jak te skrypty:Krok 2: Utwórz przycisk systemowy
Block
:Utwórz plik
Namspace\Module\Block\System\Config\Button.php
:Krok 3: Utwórz plik
view/adminhtml/templates/system/config/button.phtml
:źródło