From 9117d892732fa63ccc81acd1a1de646600d39cf4 Mon Sep 17 00:00:00 2001 From: Renon Stewart Date: Thu, 19 Sep 2024 12:02:05 -0400 Subject: [PATCH] Update company url to https --- Api/ReindexInterface.php | 2 +- Api/StrategyInterface.php | 2 +- Api/SubscriberInterface.php | 2 +- Block/Adminhtml/System/Config/Form/Field/Link.php | 2 +- Block/Adminhtml/System/Config/Source/Strategy.php | 3 ++- Controller/Adminhtml/Indexer.php | 2 +- Controller/Adminhtml/Indexer/ReindexOnTheFly.php | 3 ++- Model/Reindex.php | 3 ++- Model/Strategies/Deferred.php | 3 ++- Model/Strategies/Standard.php | 2 +- Model/Strategy.php | 3 ++- Model/StrategyResolver.php | 3 ++- Model/Subscriber.php | 3 ++- README.md | 4 ++-- etc/acl.xml | 4 ++-- etc/adminhtml/routes.xml | 2 +- etc/adminhtml/system.xml | 2 +- etc/communication.xml | 4 ++-- etc/config.xml | 4 ++-- etc/di.xml | 2 +- etc/module.xml | 2 +- etc/queue_consumer.xml | 4 ++-- etc/queue_publisher.xml | 4 ++-- etc/queue_topology.xml | 4 ++-- registration.php | 2 +- view/adminhtml/layout/indexer_indexer_list_grid.xml | 4 ++-- 26 files changed, 41 insertions(+), 34 deletions(-) diff --git a/Api/ReindexInterface.php b/Api/ReindexInterface.php index 3514b04..1f56da8 100644 --- a/Api/ReindexInterface.php +++ b/Api/ReindexInterface.php @@ -2,7 +2,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ namespace MagePal\Reindex\Api; diff --git a/Api/StrategyInterface.php b/Api/StrategyInterface.php index d7e52b8..d11789d 100644 --- a/Api/StrategyInterface.php +++ b/Api/StrategyInterface.php @@ -2,7 +2,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ namespace MagePal\Reindex\Api; diff --git a/Api/SubscriberInterface.php b/Api/SubscriberInterface.php index 28cfc10..fdbace3 100644 --- a/Api/SubscriberInterface.php +++ b/Api/SubscriberInterface.php @@ -2,7 +2,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ namespace MagePal\Reindex\Api; diff --git a/Block/Adminhtml/System/Config/Form/Field/Link.php b/Block/Adminhtml/System/Config/Form/Field/Link.php index 5d6ff55..f417870 100644 --- a/Block/Adminhtml/System/Config/Form/Field/Link.php +++ b/Block/Adminhtml/System/Config/Form/Field/Link.php @@ -2,7 +2,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ namespace MagePal\Reindex\Block\Adminhtml\System\Config\Form\Field; diff --git a/Block/Adminhtml/System/Config/Source/Strategy.php b/Block/Adminhtml/System/Config/Source/Strategy.php index eb3e1ea..a30d035 100644 --- a/Block/Adminhtml/System/Config/Source/Strategy.php +++ b/Block/Adminhtml/System/Config/Source/Strategy.php @@ -2,8 +2,9 @@ /** * Copyright © MagePal, LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ + namespace MagePal\Reindex\Block\Adminhtml\System\Config\Source; use Magento\Framework\Data\OptionSourceInterface; diff --git a/Controller/Adminhtml/Indexer.php b/Controller/Adminhtml/Indexer.php index 69ff87c..c6a3e4d 100644 --- a/Controller/Adminhtml/Indexer.php +++ b/Controller/Adminhtml/Indexer.php @@ -2,7 +2,7 @@ /** * Copyright © MagePal, LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ namespace MagePal\Reindex\Controller\Adminhtml; diff --git a/Controller/Adminhtml/Indexer/ReindexOnTheFly.php b/Controller/Adminhtml/Indexer/ReindexOnTheFly.php index b71b7d5..51d00e7 100644 --- a/Controller/Adminhtml/Indexer/ReindexOnTheFly.php +++ b/Controller/Adminhtml/Indexer/ReindexOnTheFly.php @@ -2,8 +2,9 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ + namespace MagePal\Reindex\Controller\Adminhtml\Indexer; use Exception; diff --git a/Model/Reindex.php b/Model/Reindex.php index ec8ba38..2ca1e52 100644 --- a/Model/Reindex.php +++ b/Model/Reindex.php @@ -2,8 +2,9 @@ /** * Copyright © MagePal, LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ + namespace MagePal\Reindex\Model; use Magento\Indexer\Model\IndexerFactory; diff --git a/Model/Strategies/Deferred.php b/Model/Strategies/Deferred.php index 441eed5..2c45a9f 100644 --- a/Model/Strategies/Deferred.php +++ b/Model/Strategies/Deferred.php @@ -2,8 +2,9 @@ /** * Copyright © MagePal, LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ + namespace MagePal\Reindex\Model\Strategies; use MagePal\Reindex\Api\StrategyInterface; diff --git a/Model/Strategies/Standard.php b/Model/Strategies/Standard.php index 5e3606b..b0bafe2 100644 --- a/Model/Strategies/Standard.php +++ b/Model/Strategies/Standard.php @@ -2,7 +2,7 @@ /** * Copyright © MagePal, LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ namespace MagePal\Reindex\Model\Strategies; diff --git a/Model/Strategy.php b/Model/Strategy.php index c913942..82ad2bb 100644 --- a/Model/Strategy.php +++ b/Model/Strategy.php @@ -2,8 +2,9 @@ /** * Copyright © MagePal, LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ + namespace MagePal\Reindex\Model; use MagePal\Reindex\Api\StrategyInterface; diff --git a/Model/StrategyResolver.php b/Model/StrategyResolver.php index 117bf25..5cae158 100644 --- a/Model/StrategyResolver.php +++ b/Model/StrategyResolver.php @@ -2,8 +2,9 @@ /** * Copyright © MagePal, LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ + namespace MagePal\Reindex\Model; use MagePal\Reindex\Api\StrategyInterface; diff --git a/Model/Subscriber.php b/Model/Subscriber.php index a2c31bb..87ba538 100644 --- a/Model/Subscriber.php +++ b/Model/Subscriber.php @@ -2,8 +2,9 @@ /** * Copyright © MagePal, LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ + namespace MagePal\Reindex\Model; use MagePal\Reindex\Api\SubscriberInterface; diff --git a/README.md b/README.md index 39fff63..d82ab7a 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Magento2 plugins +Magento2 plugins # Reindex Magento 2 / Adobe Commerce from Admin @@ -73,4 +73,4 @@ Magento 2 Extensions - [Order Confirmation Page Miscellaneous Scripts](https://www.magepal.com/magento2/extensions/order-confirmation-miscellaneous-scripts-for-magento-2.html) - [HTML Minifier for Magento2](https://www.magepal.com/magento2/extensions/html-minifier.html) -© MagePal LLC. | [www.magepal.com](http://www.magepal.com "Magento 2.2 Extensions Marketplace") +© MagePal LLC. | [www.magepal.com](https://www.magepal.com "Magento 2.2 Extensions Marketplace") diff --git a/etc/acl.xml b/etc/acl.xml index 985ae7e..f43c70a 100644 --- a/etc/acl.xml +++ b/etc/acl.xml @@ -1,9 +1,9 @@ - + diff --git a/etc/adminhtml/routes.xml b/etc/adminhtml/routes.xml index ef0ea0f..e2f827d 100644 --- a/etc/adminhtml/routes.xml +++ b/etc/adminhtml/routes.xml @@ -3,7 +3,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ --> diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml index c60ac1b..14873d0 100644 --- a/etc/adminhtml/system.xml +++ b/etc/adminhtml/system.xml @@ -1,4 +1,4 @@ - + - \ No newline at end of file + diff --git a/etc/config.xml b/etc/config.xml index 7466f52..66dedd6 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -2,7 +2,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ --> @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/etc/di.xml b/etc/di.xml index 2c5a160..753804e 100644 --- a/etc/di.xml +++ b/etc/di.xml @@ -3,7 +3,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ --> diff --git a/etc/module.xml b/etc/module.xml index 78cd23e..d9da1ac 100644 --- a/etc/module.xml +++ b/etc/module.xml @@ -3,7 +3,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ --> diff --git a/etc/queue_consumer.xml b/etc/queue_consumer.xml index f5bc705..ce0a55d 100644 --- a/etc/queue_consumer.xml +++ b/etc/queue_consumer.xml @@ -3,10 +3,10 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ --> - \ No newline at end of file + diff --git a/etc/queue_publisher.xml b/etc/queue_publisher.xml index daccb0e..bc04920 100644 --- a/etc/queue_publisher.xml +++ b/etc/queue_publisher.xml @@ -3,11 +3,11 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ --> - \ No newline at end of file + diff --git a/etc/queue_topology.xml b/etc/queue_topology.xml index f046787..aaf97bd 100644 --- a/etc/queue_topology.xml +++ b/etc/queue_topology.xml @@ -3,11 +3,11 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ --> - \ No newline at end of file + diff --git a/registration.php b/registration.php index b0f1514..26c89ba 100644 --- a/registration.php +++ b/registration.php @@ -2,7 +2,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ \Magento\Framework\Component\ComponentRegistrar::register( \Magento\Framework\Component\ComponentRegistrar::MODULE, diff --git a/view/adminhtml/layout/indexer_indexer_list_grid.xml b/view/adminhtml/layout/indexer_indexer_list_grid.xml index 069c29e..c115cd1 100644 --- a/view/adminhtml/layout/indexer_indexer_list_grid.xml +++ b/view/adminhtml/layout/indexer_indexer_list_grid.xml @@ -3,7 +3,7 @@ /** * Copyright © MagePal LLC. All rights reserved. * See COPYING.txt for license details. - * http://www.magepal.com | support@magepal.com + * https://www.magepal.com | support@magepal.com */ --> @@ -19,4 +19,4 @@ - \ No newline at end of file +