112 lines
1.9 KiB
PHP
112 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Integration for CalderaForms Form
|
|
*
|
|
* @package PopupMaker
|
|
* @copyright Copyright (c) 2024, Code Atlantic LLC
|
|
*/
|
|
|
|
class PUM_Integration_Form_CalderaForms extends PUM_Abstract_Integration_Form {
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $key = 'calderaforms';
|
|
|
|
public function __construct() {
|
|
add_action( 'caldera_forms_submit_complete', [ $this, 'on_success' ] );
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function label() {
|
|
// phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- Use Caldera Forms' own translations.
|
|
return __( 'Caldera Forms', 'caldera-forms' );
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function enabled() {
|
|
return defined( 'CFCORE_VER' ) && CFCORE_VER;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function get_forms() {
|
|
return Caldera_Forms_Forms::get_forms( true );
|
|
}
|
|
|
|
/**
|
|
* @param string $id
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function get_form( $id ) {
|
|
return Caldera_Forms_Forms::get_form( $id );
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function get_form_selectlist() {
|
|
$form_selectlist = [];
|
|
|
|
$forms = $this->get_forms();
|
|
|
|
foreach ( $forms as $form ) {
|
|
$form_selectlist[ $form['ID'] ] = $form['name'];
|
|
}
|
|
|
|
return $form_selectlist;
|
|
}
|
|
|
|
/**
|
|
* @param array $form
|
|
*/
|
|
public function on_success( $form ) {
|
|
if ( ! $this->should_process_submission() ) {
|
|
return;
|
|
}
|
|
|
|
$popup_id = $this->get_popup_id();
|
|
|
|
if ( $popup_id ) {
|
|
$this->increase_conversion( $popup_id );
|
|
}
|
|
|
|
pum_integrated_form_submission(
|
|
[
|
|
'popup_id' => $popup_id,
|
|
'form_provider' => $this->key,
|
|
'form_id' => $form['ID'],
|
|
]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param array $js
|
|
*
|
|
* @return array
|
|
*/
|
|
public function custom_scripts( $js = [] ) {
|
|
return $js;
|
|
}
|
|
|
|
/**
|
|
* @param array $css
|
|
*
|
|
* @return array
|
|
*/
|
|
public function custom_styles( $css = [] ) {
|
|
$css[ $this->key ] = [
|
|
'content' => ".pac-container { z-index: 2000000000 !important; }\n",
|
|
'priority' => 8,
|
|
];
|
|
|
|
return $css;
|
|
}
|
|
}
|