PluginProbe ʕ •ᴥ•ʔ
Atarim – AI Agency for WordPress: Edit Pages, Fix Code, Update Plugins, SEO & Client Feedback / trunk
Atarim – AI Agency for WordPress: Edit Pages, Fix Code, Update Plugins, SEO & Client Feedback vtrunk
5.1.3 5.1.2 5.1.1 5.1 5.0 trunk 3.10 3.11 3.12 3.13 3.14 3.15 3.16 3.17 3.18 3.19 3.2.0 3.2.1 3.22 3.22.1 3.22.2 3.22.3 3.22.4 3.22.5 3.22.6 3.3.0 3.3.1 3.3.2 3.3.2.1 3.3.2.2 3.3.3 3.30 3.31 3.32 3.4 3.4.1 3.4.3 3.4.4 3.5 3.5.1 3.6 3.6.1 3.7 3.8 3.9 3.9.1 3.9.2 3.9.3 3.9.4 3.9.6 3.9.6.1 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.2 4.2.1 4.2.2 4.3 4.3.1 4.3.2 4.3.3 4.3.4 4.3.5 4.4
atarim-visual-collaboration / third-party / flamingo / class-avcf-flamingo-detector.php
atarim-visual-collaboration / third-party / flamingo Last commit date
class-avcf-abilities-flamingo-pro.php 4 weeks ago class-avcf-abilities-flamingo.php 4 weeks ago class-avcf-flamingo-detector.php 4 weeks ago class-avcf-flamingo-helpers.php 4 weeks ago
class-avcf-flamingo-detector.php
24 lines
1 <?php
2 /**
3 * Flamingo detector.
4 *
5 * Flamingo is a standalone message-storage plugin (the de-facto entry store for
6 * Contact Form 7, but independently installable and form-agnostic). Detected by
7 * its inbound-message class / custom post type. This cluster reads Flamingo by
8 * channel and offers a CF7-aware convenience: resolving a CF7 form_id to its
9 * Flamingo channel via the form's _flamingo meta.
10 *
11 * @package atarim-visual-collaboration
12 */
13
14 if ( ! defined('ABSPATH') ) {
15 exit;
16 }
17
18 class AVCF_Flamingo_Detector {
19
20 public function avcf_flamingo_is_available() {
21 return class_exists( 'Flamingo_Inbound_Message' ) || post_type_exists( 'flamingo_inbound' );
22 }
23 }
24