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 2 hours ago









      Magento DevMagento Dev

      134




      134






















          1 Answer
          1






          active

          oldest

          votes


















          2















          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























            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









            2















            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




























              2















              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


























                2












                2








                2








                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 1 hour ago









                Sohel RanaSohel Rana

                21.4k34458




                21.4k34458






























                    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

                    Polycentropodidae

                    Magento 2 Error message: Invalid state change requested

                    Paulmy