class-avcf-abilities-fluent-pro.php
2 days ago
class-avcf-abilities-fluent.php
2 days ago
class-avcf-fluent-detector.php
2 days ago
class-avcf-fluent-helpers.php
2 days ago
class-avcf-fluent-detector.php
18 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Fluent Forms detector. |
| 4 | * |
| 5 | * @package atarim-visual-collaboration |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined('ABSPATH') ) { |
| 9 | exit; |
| 10 | } |
| 11 | |
| 12 | class AVCF_Fluent_Detector { |
| 13 | |
| 14 | public function avcf_fluent_is_available() { |
| 15 | return defined( 'FLUENTFORM' ) || function_exists( 'wpFluentForm' ); |
| 16 | } |
| 17 | } |
| 18 |