I want hide Add New Customer button for specific admin roles












1















I want to hide "ADD NEW CUSTOMER" button on customer_grid page for certain admin roles, how to specify Specify ACL's for ui_components..?



enter image description here










share|improve this question



























    1















    I want to hide "ADD NEW CUSTOMER" button on customer_grid page for certain admin roles, how to specify Specify ACL's for ui_components..?



    enter image description here










    share|improve this question

























      1












      1








      1








      I want to hide "ADD NEW CUSTOMER" button on customer_grid page for certain admin roles, how to specify Specify ACL's for ui_components..?



      enter image description here










      share|improve this question














      I want to hide "ADD NEW CUSTOMER" button on customer_grid page for certain admin roles, how to specify Specify ACL's for ui_components..?



      enter image description here







      magento2 magento-2.1 magento2.2 magento2.2.2 magento2.3






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 21 hours ago









      Magento DevMagento Dev

      155




      155






















          1 Answer
          1






          active

          oldest

          votes


















          3















          app/code/SR/MagentoCommunity/view/adminhtml/ui_component/customer_listing.xml





          <?xml version="1.0" encoding="UTF-8"?>
          <listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
          <settings>
          <buttons>
          <button name="add" class="SRMagentoCommunityUiCustomerAddButton"/>
          </buttons>
          </settings>
          </listing>




          app/code/SR/MagentoCommunity/Ui/Customer/AddButton.php




          Change Magento_Cms::save to your new role




          <?php
          namespace SRMagentoCommunityUiCustomer;

          use MagentoFrameworkViewElementUiComponentControlButtonProviderInterface;
          use MagentoFrameworkAuthorizationInterface;

          class AddButton implements ButtonProviderInterface
          {
          /**
          * Url Builder
          *
          * @var MagentoFrameworkUrlInterface
          */
          protected $urlBuilder;

          /**
          * @var AuthorizationInterface
          */
          private $authorization;

          /**
          * AddButton constructor.
          *
          * @param MagentoBackendBlockWidgetContext $context
          * @param AuthorizationInterface $authorization
          */
          public function __construct(
          MagentoBackendBlockWidgetContext $context,
          AuthorizationInterface $authorization
          ) {
          $this->urlBuilder = $context->getUrlBuilder();
          $this->authorization = $authorization;
          }

          /**
          * @return array
          */
          public function getButtonData()
          {
          if (!$this->authorization->isAllowed('Magento_Cms::save')) {
          return ;
          }

          return [
          'label' => __('Add New Customer'),
          'on_click' => sprintf("location.href = '%s';", $this->getUrl('*/*/new')),
          'class' => 'primary',
          'sort_order' => 10
          ];
          }

          /**
          * Generate url by route and parameters
          *
          * @param string $route
          * @param array $params
          * @return string
          */
          public function getUrl($route = '', $params = )
          {
          return $this->urlBuilder->getUrl($route, $params);
          }
          }





          share|improve this answer
























          • Magento_Cms ..?

            – Magento Dev
            11 hours ago











          • You change this Magento_Cms::save to your role id, that I already said. I tested using that in my local.

            – Sohel Rana
            11 hours ago











          • I don't know what is your role, so create new one acl.xml, and change here

            – Sohel Rana
            11 hours ago











          • okay, are you able to hide that button for different role other than admin..?

            – Magento Dev
            11 hours ago











          • yes, why not. Did you try that?

            – Sohel Rana
            11 hours ago











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "479"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f262152%2fi-want-hide-add-new-customer-button-for-specific-admin-roles%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          3















          app/code/SR/MagentoCommunity/view/adminhtml/ui_component/customer_listing.xml





          <?xml version="1.0" encoding="UTF-8"?>
          <listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
          <settings>
          <buttons>
          <button name="add" class="SRMagentoCommunityUiCustomerAddButton"/>
          </buttons>
          </settings>
          </listing>




          app/code/SR/MagentoCommunity/Ui/Customer/AddButton.php




          Change Magento_Cms::save to your new role




          <?php
          namespace SRMagentoCommunityUiCustomer;

          use MagentoFrameworkViewElementUiComponentControlButtonProviderInterface;
          use MagentoFrameworkAuthorizationInterface;

          class AddButton implements ButtonProviderInterface
          {
          /**
          * Url Builder
          *
          * @var MagentoFrameworkUrlInterface
          */
          protected $urlBuilder;

          /**
          * @var AuthorizationInterface
          */
          private $authorization;

          /**
          * AddButton constructor.
          *
          * @param MagentoBackendBlockWidgetContext $context
          * @param AuthorizationInterface $authorization
          */
          public function __construct(
          MagentoBackendBlockWidgetContext $context,
          AuthorizationInterface $authorization
          ) {
          $this->urlBuilder = $context->getUrlBuilder();
          $this->authorization = $authorization;
          }

          /**
          * @return array
          */
          public function getButtonData()
          {
          if (!$this->authorization->isAllowed('Magento_Cms::save')) {
          return ;
          }

          return [
          'label' => __('Add New Customer'),
          'on_click' => sprintf("location.href = '%s';", $this->getUrl('*/*/new')),
          'class' => 'primary',
          'sort_order' => 10
          ];
          }

          /**
          * Generate url by route and parameters
          *
          * @param string $route
          * @param array $params
          * @return string
          */
          public function getUrl($route = '', $params = )
          {
          return $this->urlBuilder->getUrl($route, $params);
          }
          }





          share|improve this answer
























          • Magento_Cms ..?

            – Magento Dev
            11 hours ago











          • You change this Magento_Cms::save to your role id, that I already said. I tested using that in my local.

            – Sohel Rana
            11 hours ago











          • I don't know what is your role, so create new one acl.xml, and change here

            – Sohel Rana
            11 hours ago











          • okay, are you able to hide that button for different role other than admin..?

            – Magento Dev
            11 hours ago











          • yes, why not. Did you try that?

            – Sohel Rana
            11 hours ago
















          3















          app/code/SR/MagentoCommunity/view/adminhtml/ui_component/customer_listing.xml





          <?xml version="1.0" encoding="UTF-8"?>
          <listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
          <settings>
          <buttons>
          <button name="add" class="SRMagentoCommunityUiCustomerAddButton"/>
          </buttons>
          </settings>
          </listing>




          app/code/SR/MagentoCommunity/Ui/Customer/AddButton.php




          Change Magento_Cms::save to your new role




          <?php
          namespace SRMagentoCommunityUiCustomer;

          use MagentoFrameworkViewElementUiComponentControlButtonProviderInterface;
          use MagentoFrameworkAuthorizationInterface;

          class AddButton implements ButtonProviderInterface
          {
          /**
          * Url Builder
          *
          * @var MagentoFrameworkUrlInterface
          */
          protected $urlBuilder;

          /**
          * @var AuthorizationInterface
          */
          private $authorization;

          /**
          * AddButton constructor.
          *
          * @param MagentoBackendBlockWidgetContext $context
          * @param AuthorizationInterface $authorization
          */
          public function __construct(
          MagentoBackendBlockWidgetContext $context,
          AuthorizationInterface $authorization
          ) {
          $this->urlBuilder = $context->getUrlBuilder();
          $this->authorization = $authorization;
          }

          /**
          * @return array
          */
          public function getButtonData()
          {
          if (!$this->authorization->isAllowed('Magento_Cms::save')) {
          return ;
          }

          return [
          'label' => __('Add New Customer'),
          'on_click' => sprintf("location.href = '%s';", $this->getUrl('*/*/new')),
          'class' => 'primary',
          'sort_order' => 10
          ];
          }

          /**
          * Generate url by route and parameters
          *
          * @param string $route
          * @param array $params
          * @return string
          */
          public function getUrl($route = '', $params = )
          {
          return $this->urlBuilder->getUrl($route, $params);
          }
          }





          share|improve this answer
























          • Magento_Cms ..?

            – Magento Dev
            11 hours ago











          • You change this Magento_Cms::save to your role id, that I already said. I tested using that in my local.

            – Sohel Rana
            11 hours ago











          • I don't know what is your role, so create new one acl.xml, and change here

            – Sohel Rana
            11 hours ago











          • okay, are you able to hide that button for different role other than admin..?

            – Magento Dev
            11 hours ago











          • yes, why not. Did you try that?

            – Sohel Rana
            11 hours ago














          3












          3








          3








          app/code/SR/MagentoCommunity/view/adminhtml/ui_component/customer_listing.xml





          <?xml version="1.0" encoding="UTF-8"?>
          <listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
          <settings>
          <buttons>
          <button name="add" class="SRMagentoCommunityUiCustomerAddButton"/>
          </buttons>
          </settings>
          </listing>




          app/code/SR/MagentoCommunity/Ui/Customer/AddButton.php




          Change Magento_Cms::save to your new role




          <?php
          namespace SRMagentoCommunityUiCustomer;

          use MagentoFrameworkViewElementUiComponentControlButtonProviderInterface;
          use MagentoFrameworkAuthorizationInterface;

          class AddButton implements ButtonProviderInterface
          {
          /**
          * Url Builder
          *
          * @var MagentoFrameworkUrlInterface
          */
          protected $urlBuilder;

          /**
          * @var AuthorizationInterface
          */
          private $authorization;

          /**
          * AddButton constructor.
          *
          * @param MagentoBackendBlockWidgetContext $context
          * @param AuthorizationInterface $authorization
          */
          public function __construct(
          MagentoBackendBlockWidgetContext $context,
          AuthorizationInterface $authorization
          ) {
          $this->urlBuilder = $context->getUrlBuilder();
          $this->authorization = $authorization;
          }

          /**
          * @return array
          */
          public function getButtonData()
          {
          if (!$this->authorization->isAllowed('Magento_Cms::save')) {
          return ;
          }

          return [
          'label' => __('Add New Customer'),
          'on_click' => sprintf("location.href = '%s';", $this->getUrl('*/*/new')),
          'class' => 'primary',
          'sort_order' => 10
          ];
          }

          /**
          * Generate url by route and parameters
          *
          * @param string $route
          * @param array $params
          * @return string
          */
          public function getUrl($route = '', $params = )
          {
          return $this->urlBuilder->getUrl($route, $params);
          }
          }





          share|improve this answer














          app/code/SR/MagentoCommunity/view/adminhtml/ui_component/customer_listing.xml





          <?xml version="1.0" encoding="UTF-8"?>
          <listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
          <settings>
          <buttons>
          <button name="add" class="SRMagentoCommunityUiCustomerAddButton"/>
          </buttons>
          </settings>
          </listing>




          app/code/SR/MagentoCommunity/Ui/Customer/AddButton.php




          Change Magento_Cms::save to your new role




          <?php
          namespace SRMagentoCommunityUiCustomer;

          use MagentoFrameworkViewElementUiComponentControlButtonProviderInterface;
          use MagentoFrameworkAuthorizationInterface;

          class AddButton implements ButtonProviderInterface
          {
          /**
          * Url Builder
          *
          * @var MagentoFrameworkUrlInterface
          */
          protected $urlBuilder;

          /**
          * @var AuthorizationInterface
          */
          private $authorization;

          /**
          * AddButton constructor.
          *
          * @param MagentoBackendBlockWidgetContext $context
          * @param AuthorizationInterface $authorization
          */
          public function __construct(
          MagentoBackendBlockWidgetContext $context,
          AuthorizationInterface $authorization
          ) {
          $this->urlBuilder = $context->getUrlBuilder();
          $this->authorization = $authorization;
          }

          /**
          * @return array
          */
          public function getButtonData()
          {
          if (!$this->authorization->isAllowed('Magento_Cms::save')) {
          return ;
          }

          return [
          'label' => __('Add New Customer'),
          'on_click' => sprintf("location.href = '%s';", $this->getUrl('*/*/new')),
          'class' => 'primary',
          'sort_order' => 10
          ];
          }

          /**
          * Generate url by route and parameters
          *
          * @param string $route
          * @param array $params
          * @return string
          */
          public function getUrl($route = '', $params = )
          {
          return $this->urlBuilder->getUrl($route, $params);
          }
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 20 hours ago









          Sohel RanaSohel Rana

          21.5k34458




          21.5k34458













          • Magento_Cms ..?

            – Magento Dev
            11 hours ago











          • You change this Magento_Cms::save to your role id, that I already said. I tested using that in my local.

            – Sohel Rana
            11 hours ago











          • I don't know what is your role, so create new one acl.xml, and change here

            – Sohel Rana
            11 hours ago











          • okay, are you able to hide that button for different role other than admin..?

            – Magento Dev
            11 hours ago











          • yes, why not. Did you try that?

            – Sohel Rana
            11 hours ago



















          • Magento_Cms ..?

            – Magento Dev
            11 hours ago











          • You change this Magento_Cms::save to your role id, that I already said. I tested using that in my local.

            – Sohel Rana
            11 hours ago











          • I don't know what is your role, so create new one acl.xml, and change here

            – Sohel Rana
            11 hours ago











          • okay, are you able to hide that button for different role other than admin..?

            – Magento Dev
            11 hours ago











          • yes, why not. Did you try that?

            – Sohel Rana
            11 hours ago

















          Magento_Cms ..?

          – Magento Dev
          11 hours ago





          Magento_Cms ..?

          – Magento Dev
          11 hours ago













          You change this Magento_Cms::save to your role id, that I already said. I tested using that in my local.

          – Sohel Rana
          11 hours ago





          You change this Magento_Cms::save to your role id, that I already said. I tested using that in my local.

          – Sohel Rana
          11 hours ago













          I don't know what is your role, so create new one acl.xml, and change here

          – Sohel Rana
          11 hours ago





          I don't know what is your role, so create new one acl.xml, and change here

          – Sohel Rana
          11 hours ago













          okay, are you able to hide that button for different role other than admin..?

          – Magento Dev
          11 hours ago





          okay, are you able to hide that button for different role other than admin..?

          – Magento Dev
          11 hours ago













          yes, why not. Did you try that?

          – Sohel Rana
          11 hours ago





          yes, why not. Did you try that?

          – Sohel Rana
          11 hours ago


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f262152%2fi-want-hide-add-new-customer-button-for-specific-admin-roles%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to label and detect the document text images

          Vallis Paradisi

          Tabula Rosettana