Skip to content

Instantly share code, notes, and snippets.

@adragus-inviqa
Created May 7, 2016 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adragus-inviqa/52faeb070b8f95f5f295820ddee2b406 to your computer and use it in GitHub Desktop.
Save adragus-inviqa/52faeb070b8f95f5f295820ddee2b406 to your computer and use it in GitHub Desktop.
adding a button in Magento\SalesRule\Block\Adminhtml\Promo\Quote
<type name="Magento\SalesRule\Block\Adminhtml\Promo\Quote">
<plugin name="my_vendor.add.button" type="MyVendor\Plugin\PromoQuotePlugin" />
</type>
<?php
class PromoQuotePlugin
{
public function beforeGetButtonsHtml(Magento\SalesRule\Block\Adminhtml\Promo\Quote $subject, $region = null)
{
$subject->addButton($buttonId, $data, $level, $sortOrder, $region);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment