示例#1
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // --------------------------------------
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // --------------------------------------
     // --------------------------------------
     $listingData = Mage::helper('M2ePro/Data_Global')->getValue('temp_data');
     $internalData = $this->getData('internal_data');
     $chooserBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_listing_category_chooser');
     $chooserBlock->setMarketplaceId($listingData['marketplace_id']);
     $chooserBlock->setAccountId($listingData['account_id']);
     if (!empty($internalData)) {
         $chooserBlock->setInternalData($internalData);
     }
     $this->setChild('category_chooser', $chooserBlock);
     // --------------------------------------
     // --------------------------------------
     $data = array('label' => Mage::helper('adminhtml')->__('Yes'), 'id' => 'existing_templates_confirm_button');
     $this->setChild('existing_templates_confirm_button', $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data));
     // --------------------------------------
     $data = array('label' => Mage::helper('adminhtml')->__('No'), 'id' => 'existing_templates_cancel_button');
     $this->setChild('existing_templates_cancel_button', $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data));
     // --------------------------------------
 }
示例#2
0
 protected function _beforeToHtml()
 {
     $ticket = $this->getTicket();
     $this->_headerText = Mage::helper('inchoo_tickets')->__('Ticket #%s - %s', $ticket->getTicketId(), $this->escapeHtml($ticket->getSubject()));
     $this->setViewHtml('<div id="' . $this->getDestElementId() . '"></div>');
     return parent::_beforeToHtml();
 }
示例#3
0
 /**
  * Set title and a hack for tabs container
  *
  * @return Mage_Sales_Block_Adminhtml_Recurring_Profile_View
  */
 protected function _beforeToHtml()
 {
     $profile = Mage::registry('current_recurring_profile');
     $this->_headerText = Mage::helper('sales')->__('Recurring Profile # %s', $profile->getReferenceId());
     $this->setViewHtml('<div id="' . $this->getDestElementId() . '"></div>');
     return parent::_beforeToHtml();
 }
示例#4
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // --------------------------------------
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // --------------------------------------
     // --------------------------------------
     $listingData = Mage::helper('M2ePro/Data_Global')->getValue('temp_data');
     $categoryMode = $this->getData('category_mode');
     $categoryValue = $this->getData('category_value');
     $internalData = $this->getData('internal_data');
     $specifics = $this->getData('specifics');
     $specificBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_listing_category_specific');
     $specificBlock->setMarketplaceId($listingData['marketplace_id']);
     $specificBlock->setCategoryMode($categoryMode);
     $specificBlock->setCategoryValue($categoryValue);
     if (!empty($internalData)) {
         $specificBlock->setInternalData($internalData);
     }
     if (!empty($specifics)) {
         $specificBlock->setSelectedSpecifics($specifics);
     }
     $this->setChild('category_specific', $specificBlock);
     // --------------------------------------
     // --------------------------------------
     if ($categoryMode == Ess_M2ePro_Model_Ebay_Template_Category::CATEGORY_MODE_EBAY) {
         $this->_selectedCategoryPath = Mage::helper('M2ePro/Component_Ebay_Category_Ebay')->getPath($categoryValue, $listingData['marketplace_id']);
     } else {
         $attributeLabel = Mage::helper('M2ePro/Magento_Attribute')->getAttributeLabel($categoryValue);
         $this->_selectedCategoryPath = Mage::helper('M2ePro')->__('Magento Attribute') . ' > ' . $attributeLabel;
     }
     // --------------------------------------
 }
示例#5
0
 protected function _beforeToHtml()
 {
     // Magento order data
     // ---------------
     $this->realMagentoOrderId = NULL;
     $magentoOrder = $this->order->getMagentoOrder();
     if (!is_null($magentoOrder)) {
         $this->realMagentoOrderId = $magentoOrder->getRealOrderId();
     }
     // ---------------
     // ---------------
     if (!is_null($magentoOrder) && $magentoOrder->hasShipments()) {
         $url = $this->getUrl('*/adminhtml_order/resubmitShippingInfo', array('id' => $this->order->getId()));
         $data = array('class' => '', 'label' => Mage::helper('M2ePro')->__('Resend Shipping Information'), 'onclick' => 'setLocation(\'' . $url . '\');');
         $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
         $this->setChild('resubmit_shipping_info', $buttonBlock);
     }
     // ---------------
     // Shipping data
     // ---------------
     /** @var $shippingAddress Ess_M2ePro_Model_Buy_Order_ShippingAddress */
     $shippingAddress = $this->order->getShippingAddress();
     $this->shippingAddress = $shippingAddress->getData();
     $this->shippingAddress['country_name'] = $shippingAddress->getCountryName();
     $this->shippingAddress['phone'] = $this->order->getChildObject()->getBillingAddress()->getData('phone');
     $this->shippingAddress['company'] = $this->order->getChildObject()->getBillingAddress()->getData('company');
     // ---------------
     $this->setChild('item', $this->getLayout()->createBlock('M2ePro/adminhtml_common_buy_order_view_item'));
     $this->setChild('item_edit', $this->getLayout()->createBlock('M2ePro/adminhtml_order_item_edit'));
     $this->setChild('log', $this->getLayout()->createBlock('M2ePro/adminhtml_order_view_log_grid'));
     return parent::_beforeToHtml();
 }
示例#6
0
文件: Add.php 项目: ppkowalski/M2E
 protected function _beforeToHtml()
 {
     if (is_null($this->compatibilityType)) {
         throw new LogicException('Compatibility type was not set.');
     }
     return parent::_beforeToHtml();
 }
示例#7
0
 protected function _beforeToHtml()
 {
     //-------------------------------
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Continue'), 'onclick' => 'setLocation(\'' . $this->getUrl('*/adminhtml_ebay_listing/confirmTutorial') . '\');', 'class' => 'confirm_tutorial'));
     $this->setChild('confirm_tutorial', $buttonBlock);
     //-------------------------------
     return parent::_beforeToHtml();
 }
示例#8
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $buttonCancelBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('id' => 'productSearchMenu_cancel_button', 'label' => Mage::helper('M2ePro')->__('Close'), 'class' => 'productSearchMenu_cancel_button'));
     $this->setChild('productSearchMenu_cancel_button', $buttonCancelBlock);
     //------------------------------
     parent::_beforeToHtml();
 }
示例#9
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // ------------------------------------------------
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Continue'), 'onclick' => ''));
     $this->setChild('mode_same_remember_pop_up_confirm_button', $buttonBlock);
 }
示例#10
0
 protected function _beforeToHtml()
 {
     //-------------------------------
     $url = $this->getUrl('*/adminhtml_common_listing/confirmTutorial', array('component' => Ess_M2ePro_Helper_Component_Play::NICK));
     $data = array('label' => Mage::helper('M2ePro')->__('Continue'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'confirm_tutorial');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('confirm_tutorial', $buttonBlock);
     //-------------------------------
     return parent::_beforeToHtml();
 }
示例#11
0
文件: Add.php 项目: ppkowalski/M2E
 protected function _beforeToHtml()
 {
     $additionalTitle = $this->getRequest()->getParam('current_indexed_xpath');
     $additionalTitle = explode('/', ltrim($additionalTitle, '/'));
     array_shift($additionalTitle);
     $additionalTitle = array_map(function ($el) {
         return preg_replace('/-\\d+/', '', $el);
     }, $additionalTitle);
     $this->setData('additional_title', implode(' > ', $additionalTitle));
     return parent::_beforeToHtml();
 }
示例#12
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $data = array('id' => 'mapping_submit_button', 'label' => Mage::helper('M2ePro')->__('Confirm'), 'class' => 'mapping_submit_button submit');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('mapping_submit_button', $buttonBlock);
     //------------------------------
     //------------------------------
     $this->setChild('mapping_grid', $this->getLayout()->createBlock('M2ePro/adminhtml_listing_other_mapping_grid'));
     //------------------------------
     parent::_beforeToHtml();
 }
 protected function _beforeToHtml()
 {
     $specificsGrid = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_motor_specific_grid');
     $this->setData('specifics_grid_id', $specificsGrid->getId());
     $attributeCode = $this->getData('motors_specifics_attribute');
     $attributeName = '';
     $attribute = Mage::getResourceModel('catalog/product')->getAttribute($attributeCode);
     if ($attribute !== false) {
         $attributeName = $attribute->getFrontendLabel();
     }
     $this->setData('motors_specifics_attribute', $attributeName);
     return parent::_beforeToHtml();
 }
示例#14
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('id' => 'mapToProduct_submit_button', 'label' => Mage::helper('M2ePro')->__('Confirm'), 'class' => 'mapToProduct_submit_button submit'));
     $this->setChild('mapToProduct_submit_button', $buttonBlock);
     //------------------------------
     //------------------------------
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('id' => 'mapToProduct_advancedSearch_button', 'label' => Mage::helper('M2ePro')->__('Advanced Search'), 'class' => 'mapToProduct_advancedSearch_button submit', 'onclick' => '$(\'help_grid\').toggle()'));
     $this->setChild('mapToProduct_advancedSearch_button', $buttonBlock);
     //------------------------------
     //------------------------------
     $this->setChild('mapToProduct_grid', $this->getLayout()->createBlock('M2ePro/adminhtml_listing_other_mapToProduct_grid'));
     //------------------------------
     parent::_beforeToHtml();
 }
示例#15
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('id' => 'failedProducts_continue_button', 'label' => Mage::helper('M2ePro')->__('Continue'), 'class' => 'submit'));
     $this->setChild('failedProducts_continue_button', $buttonBlock);
     //------------------------------
     //------------------------------
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('id' => 'failedProducts_back_button', 'label' => Mage::helper('M2ePro')->__('Back'), 'class' => 'scalable back'));
     $this->setChild('failedProducts_back_button', $buttonBlock);
     //------------------------------
     //------------------------------
     $this->setChild('failedProducts_grid', $this->getLayout()->createBlock('M2ePro/adminhtml_listing_moveToListing_failedProducts_grid'));
     //------------------------------
     parent::_beforeToHtml();
 }
示例#16
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $data = array('id' => 'product_mapping_submit_button', 'label' => Mage::helper('M2ePro')->__('Confirm'), 'class' => 'product_mapping_submit_button submit', 'onclick' => 'OrderEditItemHandlerObj.assignProduct();');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('product_mapping_submit_button', $buttonBlock);
     //------------------------------
     //------------------------------
     $data = array('id' => 'product_mapping_advanced_search_button', 'label' => Mage::helper('M2ePro')->__('Advanced Search'), 'class' => 'product_mapping_advanced_search_button submit', 'onclick' => '$(\'help_grid\').toggle()');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('product_mapping_advanced_search_button', $buttonBlock);
     //------------------------------
     //------------------------------
     $this->setChild('product_mapping_grid', $this->getLayout()->createBlock('M2ePro/adminhtml_order_item_product_mapping_grid'));
     //------------------------------
     parent::_beforeToHtml();
 }
示例#17
0
文件: Main.php 项目: ppkowalski/M2E
 protected function _beforeToHtml()
 {
     //------------------------------
     $data = array('id' => 'productSearch_submit_button', 'label' => Mage::helper('M2ePro')->__('Search'), 'class' => 'productSearch_submit_button submit');
     $buttonSubmitBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_submit_button', $buttonSubmitBlock);
     //------------------------------
     //------------------------------
     $data = array('id' => 'productSearch_back_button', 'label' => Mage::helper('M2ePro')->__('Back'), 'class' => 'productSearch_back_button');
     $buttonBackBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_back_button', $buttonBackBlock);
     //------------------------------
     //------------------------------
     $data = array('id' => 'productSearch_cancel_button', 'label' => Mage::helper('M2ePro')->__('Close'), 'class' => 'productSearch_cancel_button');
     $buttonCancelBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_cancel_button', $buttonCancelBlock);
     //------------------------------
     parent::_beforeToHtml();
 }
示例#18
0
文件: Review.php 项目: ppkowalski/M2E
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // --------------------------------------
     $listing = Mage::helper('M2ePro/Component')->getCachedUnknownObject('Listing', $this->getRequest()->getParam('id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // --------------------------------------
     // --------------------------------------
     $url = $this->getUrl('*/*/viewListing', array('_current' => true, 'id' => $this->getRequest()->getParam('id')));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Review Your Products'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->setChild('review', $buttonBlock);
     // --------------------------------------
     // --------------------------------------
     $url = $this->getUrl('*/*/viewListingAndList', array('_current' => true, 'id' => $this->getRequest()->getParam('id')));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('List Added Products Now'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->setChild('list', $buttonBlock);
     // --------------------------------------
 }
示例#19
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // --------------------------------------
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // --------------------------------------
     // --------------------------------------
     $url = $this->getUrl('*/adminhtml_ebay_listing/view', array('id' => $this->getRequest()->getParam('listing_id')));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('Review Your Items'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->setChild('review', $buttonBlock);
     // --------------------------------------
     // --------------------------------------
     $url = $this->getUrl('*/adminhtml_ebay_listing/view', array('id' => $this->getRequest()->getParam('listing_id'), 'do_list' => true));
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('M2ePro')->__('List Your Items Now'), 'onclick' => 'setLocation(\'' . $url . '\');', 'class' => 'save'));
     $this->getRequest()->getParam('disable_list', false) && $buttonBlock->setData('style', 'display: none');
     $this->setChild('save_and_list', $buttonBlock);
     // --------------------------------------
 }
示例#20
0
 protected function _beforeToHtml()
 {
     // Magento order data
     // ---------------
     $this->realMagentoOrderId = NULL;
     $magentoOrder = $this->order->getMagentoOrder();
     if (!is_null($magentoOrder)) {
         $this->realMagentoOrderId = $magentoOrder->getRealOrderId();
     }
     // ---------------
     // Shipping data
     // ---------------
     /** @var $shippingAddress Ess_M2ePro_Model_Amazon_Order_ShippingAddress */
     $shippingAddress = $this->order->getShippingAddress();
     $this->shippingAddress = $shippingAddress->getData();
     $this->shippingAddress['country_name'] = $shippingAddress->getCountryName();
     // ---------------
     $this->setChild('item', $this->getLayout()->createBlock('M2ePro/adminhtml_amazon_order_view_item'));
     $this->setChild('log', $this->getLayout()->createBlock('M2ePro/adminhtml_order_view_log'));
     return parent::_beforeToHtml();
 }
示例#21
0
 protected function _beforeToHtml()
 {
     // Magento order data
     // ---------------
     $this->realMagentoOrderId = NULL;
     $magentoOrder = $this->order->getMagentoOrder();
     if (!is_null($magentoOrder)) {
         $this->realMagentoOrderId = $magentoOrder->getRealOrderId();
     }
     // ---------------
     // ---------------
     if (!is_null($magentoOrder) && $magentoOrder->hasShipments()) {
         $url = $this->getUrl('*/adminhtml_order/resubmitShippingInfo', array('id' => $this->order->getId()));
         $data = array('class' => '', 'label' => Mage::helper('M2ePro')->__('Resend Shipping Information'), 'onclick' => 'setLocation(\'' . $url . '\');');
         $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
         $this->setChild('resubmit_shipping_info', $buttonBlock);
     }
     // ---------------
     // Shipping data
     // ---------------
     /** @var $shippingAddress Ess_M2ePro_Model_Ebay_Order_ShippingAddress */
     $shippingAddress = $this->order->getShippingAddress();
     $this->shippingAddress = $shippingAddress->getData();
     $this->shippingAddress['country_name'] = $shippingAddress->getCountryName();
     // ---------------
     // Global Shipping data
     // ---------------
     $globalShippingDetails = $this->order->getChildObject()->getGlobalShippingDetails();
     if (!empty($globalShippingDetails)) {
         $this->ebayWarehouseAddress = $globalShippingDetails['warehouse_address'];
         $this->globalShippingServiceDetails = $globalShippingDetails['service_details'];
     }
     // ---------------
     $this->setChild('item', $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_order_view_item'));
     $this->setChild('item_edit', $this->getLayout()->createBlock('M2ePro/adminhtml_order_item_edit'));
     $this->setChild('log', $this->getLayout()->createBlock('M2ePro/adminhtml_order_view_log_grid'));
     $this->setChild('external_transaction', $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_order_view_externalTransaction'));
     return parent::_beforeToHtml();
 }
示例#22
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     // --------------------------------------
     $listing = Mage::helper('M2ePro/Component_Ebay')->getCachedObject('Listing', $this->getRequest()->getParam('listing_id'));
     $viewHeaderBlock = $this->getLayout()->createBlock('M2ePro/adminhtml_listing_view_header', '', array('listing' => $listing));
     $this->setChild('view_header', $viewHeaderBlock);
     // --------------------------------------
     // --------------------------------------
     $data = array('id' => 'next_category_button', 'class' => 'next next_category_button specifics_buttons', 'label' => Mage::helper('M2ePro')->__('Next Category'), 'onclick' => 'EbayListingCategorySpecificWrapperHandlerObj.renderNextCategory();');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('next_category_button', $buttonBlock);
     // --------------------------------------
     // --------------------------------------
     $data = array('class' => 'scalable next continue specifics_buttons', 'label' => Mage::helper('M2ePro')->__('Continue'), 'onclick' => 'EbayListingCategorySpecificWrapperHandlerObj.save();');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('continue', $buttonBlock);
     // --------------------------------------
     // --------------------------------------
     $data = array('class' => 'next', 'label' => Mage::helper('M2ePro')->__('Continue'), 'onclick' => 'EbayListingCategorySpecificWrapperHandlerObj.save();');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('popup_confirm_button', $buttonBlock);
     // --------------------------------------
 }
示例#23
0
文件: Main.php 项目: ppkowalski/M2E
 protected function _beforeToHtml()
 {
     //------------------------------
     $data = array('id' => 'productSearch_submit_button', 'label' => Mage::helper('M2ePro')->__('Search'), 'class' => 'productSearch_submit_button submit');
     $buttonSubmitBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_submit_button', $buttonSubmitBlock);
     //------------------------------
     //------------------------------
     $data = array('id' => 'productSearch_back_button', 'label' => Mage::helper('M2ePro')->__('Back'), 'class' => 'productSearch_back_button');
     $buttonBackBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_back_button', $buttonBackBlock);
     //------------------------------
     //------------------------------
     $data = array('id' => 'productSearch_cancel_button', 'label' => Mage::helper('M2ePro')->__('Close'), 'class' => 'productSearch_cancel_button');
     $buttonCancelBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_cancel_button', $buttonCancelBlock);
     //------------------------------
     //------------------------------
     $data = array('id' => 'productSearch_cleanSuggest_button', 'label' => Mage::helper('M2ePro')->__('Clear Search Results'), 'class' => 'productSearch_cleanSuggest_button', 'onclick' => 'ListingGridHandlerObj.productSearchHandler.clearSearchResultsAndOpenSearchMenu()');
     $buttonResetBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('productSearch_cleanSuggest_button', $buttonResetBlock);
     //------------------------------
     parent::_beforeToHtml();
 }
示例#24
0
 protected function _beforeToHtml()
 {
     $this->calculateWarnings();
     return parent::_beforeToHtml();
 }
示例#25
0
 protected function _beforeToHtml()
 {
     $this->setChild('description', $this->getLayout()->createBlock('M2ePro/adminhtml_wizard_welcome_description'));
     $this->setChild('requirements', $this->getLayout()->createBlock('M2ePro/adminhtml_wizard_welcome_requirements'));
     return parent::_beforeToHtml();
 }
示例#26
0
 protected function _beforeToHtml()
 {
     //------------------------------
     $repairInput = $this->getOrderItem()->getChildObject()->getRepairInput();
     $channelOptions = array();
     if (!empty($repairInput)) {
         foreach ($repairInput as $channelOptionLabel => $channelValueLabel) {
             $channelOptions[] = array('label' => $channelOptionLabel, 'value' => $channelValueLabel);
         }
     }
     $this->setData('channel_options', $channelOptions);
     //------------------------------
     //------------------------------
     $this->magentoProduct = $this->getOrderItem()->getMagentoProduct();
     $magentoOptions = array();
     $magentoVariations = $this->magentoProduct->getVariationInstance()->getVariationsTypeRaw();
     if ($this->magentoProduct->isGroupedType()) {
         $magentoOptionLabel = Mage::helper('M2ePro')->__(Ess_M2ePro_Model_Magento_Product_Variation::GROUPED_PRODUCT_ATTRIBUTE_LABEL);
         $magentoOption = array('option_id' => 0, 'label' => $magentoOptionLabel, 'values' => array());
         foreach ($magentoVariations as $key => $magentoVariation) {
             $magentoOption['values'][] = array('value_id' => $key, 'label' => $magentoVariation->getName(), 'product_ids' => array($magentoVariation->getId()));
         }
         $magentoOptions[] = $magentoOption;
     } else {
         foreach ($magentoVariations as $magentoVariation) {
             $magentoOptionLabel = array_shift($magentoVariation['labels']);
             if (!$magentoOptionLabel) {
                 $magentoOptionLabel = Mage::helper('M2ePro')->__('N/A');
             }
             $magentoOption = array('option_id' => $magentoVariation['option_id'], 'label' => $magentoOptionLabel, 'values' => array());
             foreach ($magentoVariation['values'] as $magentoOptionValue) {
                 $magentoValueLabel = array_shift($magentoOptionValue['labels']);
                 if (!$magentoValueLabel) {
                     $magentoValueLabel = Mage::helper('M2ePro')->__('N/A');
                 }
                 $magentoOption['values'][] = array('value_id' => $magentoOptionValue['value_id'], 'label' => $magentoValueLabel, 'product_ids' => $magentoOptionValue['product_ids']);
             }
             $magentoOptions[] = $magentoOption;
         }
     }
     $this->setData('magento_options', $magentoOptions);
     //------------------------------
     //------------------------------
     $data = array('id' => 'product_options_mapping_submit_button', 'label' => Mage::helper('M2ePro')->__('Confirm'), 'class' => 'product_options_mapping_submit_button submit', 'onclick' => 'OrderEditItemHandlerObj.assignProductDetails();');
     $buttonBlock = $this->getLayout()->createBlock('adminhtml/widget_button')->setData($data);
     $this->setChild('product_options_mapping_submit_button', $buttonBlock);
     //------------------------------
     parent::_beforeToHtml();
 }
示例#27
0
 protected function _beforeToHtml()
 {
     $this->setChild('content', $this->getLayout()->createBlock('M2ePro/adminhtml_wizard_installation_content'));
     return parent::_beforeToHtml();
 }
示例#28
0
 protected function _beforeToHtml()
 {
     $this->setChild('edit', $this->getLayout()->createBlock('M2ePro/adminhtml_config_edit'));
     $this->setChild('grid', $this->getLayout()->createBlock('M2ePro/adminhtml_config_view_grid'));
     return parent::_beforeToHtml();
 }
示例#29
0
 protected function _beforeToHtml()
 {
     parent::_beforeToHtml();
     $this->setChild('help', $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_listing_search_help'));
     $this->setChild('grid', $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_listing_search_grid'));
 }
 protected function _beforeToHtml()
 {
     $specificsGrid = $this->getLayout()->createBlock('M2ePro/adminhtml_ebay_motor_specific_grid');
     $this->setData('specifics_grid_id', $specificsGrid->getId());
     return parent::_beforeToHtml();
 }