Пример #1
0
    protected function _toHtml()
    {
        $breadcrumb = $this->createBlock('Amazon\\Listing\\Create\\Breadcrumb')->setSelectedStep((int) $this->getRequest()->getParam('step', 1));
        $helpBlock = $this->createBlock('HelpBlock')->setData(['content' => $this->__('In this Section you can specify the sources from which the values for ASIN/ISBN and
                UPC/EAN will be taken in case you have those for your Items. <br/><br/>
                These Settings will be used in two cases:

                <ul class="list">
                    <li>at the time of using Automatic ASIN/ISBN Search;</li>
                    <li>at the time of using “List” Action.</li>
                </ul>

                Using these Settings means the Search of existing Amazon Products and the process of
                linking Magento Product with found Amazon Product. <br/><br/>

                During the process of Search, Settings values are used according to the following logic:

                <ul class="list">
                    <li>the Product is searched by ASIN/ISBN parameter. (if specified);</li>
                    <li>if no result by ASIN/ISBN parameter, then UPC/EAN search is performed. (if specified);</li>
                    <li>if no result by UPC/EAN parameter, then additional search by Magento Product Name is performed.
                    (if enabled).</li>
                </ul>
                <br/>
                More detailed information you can find 
                <a href="%url%" target="_blank">here</a>.', $this->getHelper('Module\\Support')->getDocumentationUrl(NULL, NULL, 'x/YQItAQ'))]);
        return $breadcrumb->toHtml() . $helpBlock->toHtml() . parent::_toHtml();
    }
Пример #2
0
 protected function _toHtml()
 {
     $breadcrumb = $this->createBlock('Amazon\\Listing\\Create\\Breadcrumb')->setSelectedStep((int) $this->getRequest()->getParam('step', 1));
     $helpBlock = $this->createBlock('HelpBlock')->setData(['content' => $this->__('<p>It is necessary to select an Amazon Account (existing or create a new one) as well as choose
             a Marketplace that you are going to sell Magento Products on.</p>
             <p>It is also important to specify a Store View in accordance with which Magento Attribute
             values will be used in the Listing settings.</p><br>
             <p>More detailed information you can find <a href="%url%" target="_blank">here</a>.</p>', $this->getHelper('Module\\Support')->getDocumentationUrl(NULL, NULL, 'x/XQItAQ'))]);
     return $breadcrumb->toHtml() . '<div id="progress_bar"></div>' . $helpBlock->toHtml() . '<div id="content_container">' . parent::_toHtml() . '</div>';
 }
Пример #3
0
    protected function _toHtml()
    {
        $breadcrumb = $this->createBlock('Amazon\\Listing\\Create\\Breadcrumb')->setSelectedStep((int) $this->getRequest()->getParam('step', 1));
        $helpBlock = $this->createBlock('HelpBlock')->setData(['content' => $this->__('On this Page you can specify main <strong>Selling Settings</strong> for Amazon Items you are going
                to sell using this M2E Pro Listing.<br/><br/>

                You can provide a settings for SKU formating, appropriate Condition,
                Condition Note, Gift Wrap, Gift Message and also specify
                Additional Settings - Handling Time and Restock Date.<br/><br/>

                In addition to, in this Section you can select Selling Format Policy that contains
                Settings connected with forming
                of Price, Quantity etc. and Synchronization Policy that describes Rules of
                Automatic Synchronization of Magento Product and Amazon Item.<br/><br/>
                More detailed information you can find
                <a href="%url%" target="_blank">here</a>.', $this->getHelper('Module\\Support')->getDocumentationUrl(NULL, NULL, 'x/XwItAQ'))]);
        return $breadcrumb->toHtml() . $helpBlock->toHtml() . parent::_toHtml();
    }
Пример #4
0
    protected function _toHtml()
    {
        $this->jsTranslator->addTranslations(['Apply Settings' => $this->__('Apply Settings')]);
        $listing = $this->getHelper('Data\\GlobalData')->getValue('listing_for_products_category_settings');
        $this->js->addOnReadyJs(<<<JS
require([
    'M2ePro/Ebay/Listing/Product/Category/Settings/Mode'
], function(){

    window.EbayListingProductCategorySettingsModeObj = new EbayListingProductCategorySettingsMode(
        '{$this->getData('mode')}'
    );

});
JS
);
        $viewHeaderBlock = $this->createBlock('Listing\\View\\Header', '', ['data' => ['listing' => $listing]]);
        return $viewHeaderBlock->toHtml() . parent::_toHtml() . <<<HTML
<div id="mode_same_remember_pop_up_content" style="display: none">
        {$this->__('If you continue the Settings you will choose next will be applied to the current M2E Pro Listing
            and automatically assigned to all Products added later.<br/><br/>')}
</div>
HTML;
    }
Пример #5
0
 protected function _toHtml()
 {
     return '<div id="marketplaces_progress_bar"></div>' . '<div id="marketplaces_content_container">' . parent::_toHtml() . '</div>';
 }
Пример #6
0
 protected function _toHtml()
 {
     $listing = $this->getHelper('Data\\GlobalData')->getValue('listing_for_products_add');
     $viewHeaderBlock = $this->createBlock('Listing\\View\\Header', '', ['data' => ['listing' => $listing]]);
     return $viewHeaderBlock->toHtml() . parent::_toHtml();
 }
Пример #7
0
 protected function _toHtml()
 {
     $viewHeaderBlock = $this->createBlock('Listing\\View\\Header', '', ['data' => ['listing' => $this->listing]]);
     return $viewHeaderBlock->toHtml() . parent::_toHtml();
 }