當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Field::render方法代碼示例

本文整理匯總了PHP中Magento\Config\Block\System\Config\Form\Field::render方法的典型用法代碼示例。如果您正苦於以下問題:PHP Field::render方法的具體用法?PHP Field::render怎麽用?PHP Field::render使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Magento\Config\Block\System\Config\Form\Field的用法示例。


在下文中一共展示了Field::render方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: render

    public function render(AbstractElement $element)
    {
        $element->unsScope();
        $element->unsCanUseWebsiteValue();
        $element->unsCanUseDefaultValue();
        $element->setValue(__('Update'));
        $element->setData('onclick', 'javascript:geoIpUpdate(); return false;');
        $element->setData('class', 'action-default');
        $element->setData('after_element_js', '<script type="application/javascript">
    require(["jquery"], function($){
        window.geoIpUpdate = function() {
            $.getJSON(
                "' . $this->getUrl('tobai_geoip2/database/update') . '",
                function(data) {
                    if (data.status_info) {
                        $("#row_tobai_geoip2_database_status .value").html(data.status_info);
                    }
                }
            );
        };

        $(document).bind("ajaxSend", function() {
            $("body").trigger("processStart");
        });

        $(document).bind("ajaxComplete", function() {
            $("body").trigger("processStop");
        });
    });
</script>');
        return parent::render($element);
    }
開發者ID:ytorbyk,項目名稱:magento2-geo-ip2,代碼行數:32,代碼來源:Update.php

示例2: render

 /**
  * @param AbstractElement $element
  * @return string
  */
 public function render(AbstractElement $element)
 {
     if (!$element instanceof Select || empty($element->getData('values'))) {
         return '';
     }
     return parent::render($element);
 }
開發者ID:rafaelstz,項目名稱:magento2,代碼行數:11,代碼來源:EmptySelectDecorator.php

示例3: render

 /**
  * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @return string
  */
 public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
 {
     if ($this->getRequest()->getParam('website') != '') {
         $priceScope = $this->_scopeConfig->getValue(\Magento\Store\Model\Store::XML_PATH_PRICE_SCOPE, \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
         if ($priceScope == \Magento\Store\Model\Store::PRICE_SCOPE_GLOBAL) {
             return '';
         }
     }
     return parent::render($element);
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:14,代碼來源:Base.php

示例4: testRenderInheritCheckbox

 public function testRenderInheritCheckbox()
 {
     $this->_elementMock->expects($this->any())->method('getInherit')->will($this->returnValue(true));
     $this->_elementMock->expects($this->any())->method('getCanUseWebsiteValue')->will($this->returnValue(true));
     $this->_elementMock->expects($this->any())->method('getCanUseDefaultValue')->will($this->returnValue(true));
     $this->_elementMock->expects($this->once())->method('setDisabled')->with(true);
     $expected = '<td class="use-default">';
     $expected .= '<input id="' . $this->_testData['htmlId'] . '_inherit" name="' . $this->_testData['name'] . '[inherit]" type="checkbox" value="1"' . ' class="checkbox config-inherit" checked="checked"' . ' onclick="toggleValueElements(this, Element.previous(this.parentNode))" /> ';
     $expected .= '<label for="' . $this->_testData['htmlId'] . '_inherit" class="inherit">Use Website</label>';
     $actual = $this->_object->render($this->_elementMock);
     $this->assertContains($expected, $actual);
 }
開發者ID:shabbirvividads,項目名稱:magento2,代碼行數:12,代碼來源:FieldTest.php

示例5: render

 /**
  * Render text
  *
  * @param  \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @return string
  */
 public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
 {
     //		$html='<li class="notice-msg">
     //
     //                                        * <a href="https://docs.mageplaza.com/blog-m2/" target="_blank">User Guide</a> <br>
     //                                        * <a href="https://mageplaza.freshdesk.com/support/discussions/topics/new?forum_id=6000241371" target="_blank">Report a problem</a> <br>
     //                                        * Your default blog URL <strong>domain.com/blog/</strong> <br>
     //                                        * Atom Feed <strong>domain.com/blog/post/rss/</strong> <br>
     //                                        * Sitemap <strong>domain.com/sitemap/blog.xml</strong> <br>
     //
     //                            </li>';
     //		return $html;
     return parent::render($element);
 }
開發者ID:mageplaza,項目名稱:magento-2-blog-extension,代碼行數:20,代碼來源:Head.php

示例6: render

 /**
  * Render country field considering request parameter
  *
  * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @return string
  */
 public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
 {
     $country = $this->getRequest()->getParam(StructurePlugin::REQUEST_PARAM_COUNTRY);
     if ($country) {
         $element->setValue($country);
     }
     if ($element->getCanUseDefaultValue()) {
         $this->_defaultCountry = $this->_scopeConfig->getValue(self::FIELD_CONFIG_PATH);
         if (!$this->_defaultCountry) {
             $this->_defaultCountry = $this->directoryHelper->getDefaultCountry();
         }
         if ($country) {
             $shouldInherit = $country == $this->_defaultCountry && $this->getRequest()->getParam(self::REQUEST_PARAM_DEFAULT_COUNTRY);
             $element->setInherit($shouldInherit);
         }
         if ($element->getInherit()) {
             $this->_defaultCountry = null;
         }
     }
     return parent::render($element);
 }
開發者ID:IlyaGluschenko,項目名稱:protection,代碼行數:27,代碼來源:Country.php

示例7: render

 /**
  * {@inheritdoc}
  */
 public function render(AbstractElement $element)
 {
     $element->unsScope()->unsCanUseWebsiteValue()->unsCanUseDefaultValue();
     return parent::render($element);
 }
開發者ID:Doability,項目名稱:magento2dev,代碼行數:8,代碼來源:Command.php

示例8: render

 /**
  * Unset some non-related element parameters
  *
  * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @return string
  */
 public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
 {
     $element->unsScope()->unsCanUseWebsiteValue()->unsCanUseDefaultValue();
     return parent::render($element);
 }
開發者ID:niransingh,項目名稱:magento2,代碼行數:11,代碼來源:Button.php

示例9: render

 public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
 {
     $element->setDateFormat(\Magento\Framework\Stdlib\DateTime::DATE_INTERNAL_FORMAT);
     $element->setTimeFormat(null);
     return parent::render($element);
 }
開發者ID:lazyguru,項目名稱:magento2-abandonedcart,代碼行數:6,代碼來源:Date.php

示例10: render

 /**
  * Retrieve HTML markup for given form element
  *
  * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @return string
  */
 public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
 {
     $element->setRenderer($this);
     return parent::render($element);
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:11,代碼來源:AbstractEnable.php


注:本文中的Magento\Config\Block\System\Config\Form\Field::render方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。