| | |
| | | <?php |
| | | namespace JVBase\blocks; |
| | | |
| | | use JVBase\managers\CacheManager; |
| | | use JVBase\managers\Cache; |
| | | use JVBase\meta\MetaManager; |
| | | use JVBase\managers\CloudflareTurnstile; |
| | | use Exception; |
| | |
| | | */ |
| | | class FormBlock |
| | | { |
| | | protected static FormBlock|null $instance = null; |
| | | protected CacheManager $cache; |
| | | protected static ?FormBlock $instance = null; |
| | | protected Cache $cache; |
| | | protected array $forms; |
| | | protected string $form_contact; |
| | | |
| | |
| | | |
| | | public function __construct() |
| | | { |
| | | $this->cache = CacheManager::for('form_blocks', WEEK_IN_SECONDS); |
| | | $this->cache = Cache::for('forms', WEEK_IN_SECONDS); |
| | | // Initialize forms from filter |
| | | $this->forms = $this->registerForms(); |
| | | $this->form_contact = apply_filters('jvb_form_contact', ''); |
| | |
| | | } |
| | | |
| | | $cache_key = $this->cache->generateKey($block); |
| | | $cached = $this->cache->get($cache_key); |
| | | $cached = false; |
| | | if ($cached) { |
| | | return $cached; |
| | | return $this->cache->remember( |
| | | $cache_key, |
| | | function() use ($form_type, $block) { |
| | | return $this->renderForm($form_type, $block); |
| | | } |
| | | |
| | | $rendered = $this->renderForm($form_type, $block); |
| | | |
| | | $this->cache->set($cache_key, $rendered); |
| | | return $rendered; |
| | | ); |
| | | } |
| | | |
| | | /** |