本文整理汇总了PHP中Mage_Adminhtml_Block_Sales_Order_Create_Abstract类的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Adminhtml_Block_Sales_Order_Create_Abstract类的具体用法?PHP Mage_Adminhtml_Block_Sales_Order_Create_Abstract怎么用?PHP Mage_Adminhtml_Block_Sales_Order_Create_Abstract使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Mage_Adminhtml_Block_Sales_Order_Create_Abstract类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _toHtml
protected function _toHtml()
{
if (!Mage::getSingleton('adminhtml/quote')->getIsOldCustomer()) {
return parent::_toHtml();
}
return '';
}
示例2: _toHtml
protected function _toHtml()
{
if ($this->getStoreId()) {
return parent::_toHtml();
}
return '';
}
示例3: __construct
public function __construct()
{
parent::__construct();
$this->setId('adminlog');
$this->_logged = Mage::getSingleton('admin/session')->getUser();
$this->_collection = Mage::getModel('admin/user')->getCollection();
}
示例4: _toHtml
/**
* Prepare html output
*
* @return string
*/
protected function _toHtml()
{
$payment = $this->getQuote()->getPayment();
if (!$payment->getMethod() || !$payment->getMethodInstance() || $payment->getMethodInstance()->getIsDummy() || !$payment->getMethodInstance()->getIsCentinelValidationEnabled()) {
return '';
}
return parent::_toHtml();
}
示例5: _prepareLayout
/**
* Prepare global layout
* Add renderers to Varien_Data_Form
*
* @return Mage_Adminhtml_Block_Sales_Order_Create_Form_Abstract
*/
protected function _prepareLayout()
{
parent::_prepareLayout();
Varien_Data_Form::setElementRenderer($this->getLayout()->createBlock('adminhtml/widget_form_renderer_element'));
Varien_Data_Form::setFieldsetRenderer($this->getLayout()->createBlock('adminhtml/widget_form_renderer_fieldset'));
Varien_Data_Form::setFieldsetElementRenderer($this->getLayout()->createBlock('adminhtml/widget_form_renderer_fieldset_element'));
return $this;
}
示例6: _prepareLayout
protected function _prepareLayout()
{
$childNames = array('sidebar', 'form_account', 'shipping_address', 'billing_address', 'shipping_method', 'billing_method', 'newsletter', 'search', 'items', 'comment', 'totals', 'giftmessage');
foreach ($childNames as $name) {
$this->setChild($name, $this->getLayout()->createBlock('adminhtml/sales_order_create_' . $name));
}
return parent::_prepareLayout();
}
示例7: _toHtml
/**
* Prepare html output
*
* @return string
*/
protected function _toHtml()
{
$_item = $this->getItem();
if ($_item && $_item->getGwId()) {
return parent::_toHtml();
} else {
return false;
}
}
示例8: __call
/**
* call method that defined from block helper
*
* @param string $method
* @param array $args
* @return mixed
*/
public function __call($method, $args)
{
$helper = $this->getBlockHelper();
if (method_exists($helper, $method)) {
return call_user_func_array(array($helper, $method), $args);
// return call_user_method_array($method, $helper, $args);
}
return parent::__call($method, $args);
}
示例9: _prepareLayout
protected function _prepareLayout()
{
$this->setChild('data', $this->getLayout()->createBlock('adminhtml/sales_order_create_data'));
$childNames = array('customer', 'store', 'data', 'messages');
foreach ($childNames as $name) {
$this->setChild($name, $this->getLayout()->createBlock('adminhtml/sales_order_create_' . $name));
}
return parent::_prepareLayout();
}
示例10: _toHtml
/**
* Prepare validation and template parameters
*/
protected function _toHtml()
{
$payment = $this->getQuote()->getPayment();
if ($payment && ($method = $payment->getMethodInstance())) {
if ($method->getIsCentinelValidationEnabled() && ($centinel = $method->getCentinelValidator())) {
$this->setFrameUrl($centinel->getValidatePaymentDataUrl())->setContainerId('centinel_authenticate_iframe')->setMethodCode($method->getCode());
return parent::_toHtml();
}
}
return '';
}
示例11: _prepareLayout
protected function _prepareLayout()
{
if ($this->getCustomerId()) {
$button = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('sales')->__('Update Changes'), 'onclick' => 'order.sidebarApplyChanges()', 'before_html' => '<div class="sub-btn-set">', 'after_html' => '</div>'));
$this->setChild('top_button', $button);
}
if ($this->getCustomerId()) {
$button = clone $button;
$button->unsId();
$this->setChild('bottom_button', $button);
}
return parent::_prepareLayout();
}
示例12: _prepareLayout
protected function _prepareLayout()
{
if ($this->getCustomerId()) {
$button = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(array('label' => Mage::helper('sales')->__('Update Changes'), 'onclick' => 'order.sidebarApplyChanges()', 'before_html' => '<div class="sub-btn-set">', 'after_html' => '</div>'));
$this->setChild('top_button', $button);
}
$this->setChild('cart', $this->getLayout()->createBlock('adminhtml/sales_order_create_sidebar_cart'));
$this->setChild('wishlist', $this->getLayout()->createBlock('adminhtml/sales_order_create_sidebar_wishlist'));
$this->setChild('reorder', $this->getLayout()->createBlock('adminhtml/sales_order_create_sidebar_reorder'));
$this->setChild('viewed', $this->getLayout()->createBlock('adminhtml/sales_order_create_sidebar_viewed'));
$this->setChild('compared', $this->getLayout()->createBlock('adminhtml/sales_order_create_sidebar_compared'));
$this->setChild('pcompared', $this->getLayout()->createBlock('adminhtml/sales_order_create_sidebar_pcompared'));
$this->setChild('pviewed', $this->getLayout()->createBlock('adminhtml/sales_order_create_sidebar_pviewed'));
if ($this->getCustomerId()) {
$this->setChild('bottom_button', $button);
}
return parent::_prepareLayout();
}
示例13: _construct
protected function _construct()
{
parent::_construct();
$this->setId('sales_order_create_coupons_form');
}
示例14: __construct
public function __construct()
{
parent::__construct();
$this->setId('sales_order_create_coupons_form');
}
示例15: __construct
public function __construct()
{
parent::__construct();
$this->setId('sales_order_create_totals');
$this->setTemplate('sales/order/create/totals.phtml');
}