![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-backend/Block/System/Cache/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\Block\System\Cache; /** * Cache management form page * * @author Magento Core Team <[email protected]> */ class Form extends \Magento\Backend\Block\Widget\Form\Generic { /** * @var \Magento\Framework\App\Cache\TypeListInterface */ protected $cacheTypeList; /** * @param \Magento\Backend\Block\Template\Context $context * @param \Magento\Framework\Registry $registry * @param \Magento\Framework\Data\FormFactory $formFactory * @param \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList * @param array $data */ public function __construct( \Magento\Backend\Block\Template\Context $context, \Magento\Framework\Registry $registry, \Magento\Framework\Data\FormFactory $formFactory, \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList, array $data = [] ) { $this->cacheTypeList = $cacheTypeList; parent::__construct($context, $registry, $formFactory, $data); } /** * Initialize cache management form * * @return $this */ public function initForm() { /** @var \Magento\Framework\Data\Form $form */ $form = $this->_formFactory->create(); $fieldset = $form->addFieldset('cache_enable', ['legend' => __('Cache Control')]); $fieldset->addField( 'all_cache', 'select', [ 'name' => 'all_cache', 'label' => '<strong>' . __('All Cache') . '</strong>', 'value' => 1, 'options' => [ '' => __('No change'), 'refresh' => __('Refresh'), 'disable' => __('Disable'), 'enable' => __('Enable'), ] ] ); foreach ($this->cacheTypeList->getTypeLabels() as $type => $label) { $fieldset->addField( 'enable_' . $type, 'checkbox', [ 'name' => 'enable[' . $type . ']', 'label' => __($label), 'value' => 1, 'checked' => (int)$this->_cacheState->isEnabled($type) ] ); } $this->setForm($form); return $this; } }