123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\User\Block\Adminhtml;
- /**
- * Locked administrators page
- *
- * @api
- * @since 100.0.2
- */
- class Locks extends \Magento\Backend\Block\Widget\Grid\Container
- {
- /**
- * {@inheritdoc}
- *
- * @codeCoverageIgnore
- */
- protected function _construct()
- {
- parent::_construct();
- $this->buttonList->remove('add');
- }
- }
|