12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * IDEALIAGroup srl
- *
- * NOTICE OF LICENSE
- *
- * This source file is subject to the Open Software License (OSL 3.0)
- * that is bundled with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://opensource.org/licenses/osl-3.0.php
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to info@idealiagroup.com so we can send you a copy immediately.
- *
- * @category MSP
- * @package MSP_ReCaptcha
- * @copyright Copyright (c) 2016 IDEALIAGroup srl (http://www.idealiagroup.com)
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- */
- namespace MSP\ReCaptcha\Command;
- use Magento\Framework\App\Cache\Manager;
- use Magento\Framework\App\Config\ConfigResource\ConfigInterface;
- use MSP\ReCaptcha\Model\Config;
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- class ReCaptcha extends Command
- {
- /**
- * @var ConfigInterface
- */
- private $config;
- /**
- * @var Manager
- */
- private $cacheManager;
- /**
- * ReCaptcha constructor.
- * @param ConfigInterface $config
- * @param Manager $cacheManager
- */
- public function __construct(
- ConfigInterface $config,
- Manager $cacheManager
- ) {
- parent::__construct();
- $this->config = $config;
- $this->cacheManager = $cacheManager;
- }
- /**
- * @inheritdoc
- */
- protected function configure()
- {
- $this->setName('msp:security:recaptcha:disable');
- $this->setDescription('Disable backend reCaptcha');
- parent::configure();
- }
- /**
- * @inheritdoc
- * @SuppressWarnings("PHPMD.UnusedFormalParameter")
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- $this->config->saveConfig(
- Config::XML_PATH_ENABLED_BACKEND,
- '0',
- 'default',
- 0
- );
- $this->cacheManager->flush(['config']);
- }
- }
|