123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Block\Adminhtml\Order\View\Tab;
- /**
- * Order Credit Memos grid
- *
- * @api
- * @since 100.0.2
- */
- class Creditmemos extends \Magento\Framework\View\Element\Text\ListText implements
- \Magento\Backend\Block\Widget\Tab\TabInterface
- {
- /**
- * {@inheritdoc}
- */
- public function getTabLabel()
- {
- return __('Credit Memos');
- }
- /**
- * {@inheritdoc}
- */
- public function getTabTitle()
- {
- return __('Order Credit Memos');
- }
- /**
- * {@inheritdoc}
- */
- public function canShowTab()
- {
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function isHidden()
- {
- return false;
- }
- }
|