Файловый менеджер - Редактировать - /home/onlin326/cristianalberio.org/wp-content/plugins/weforms/includes/importer/class-importer-caldera-forms.php
Назад
<?php /** * Import caldera forms * * Class WeForms_Importer_Caldera_Forms */ class WeForms_Importer_Caldera_Forms extends WeForms_Importer_Abstract { /** * Will store submit button label * * @var string */ private $submit_text; public function __construct() { $this->id = 'caldera-forms'; $this->title = 'Caldera Forms'; $this->shortcode = 'caldera_form'; parent::__construct(); } /** * See if the plugin exists * * @return bool */ public function plugin_exists() { return class_exists( 'Caldera_Forms' ); } /** * Get all the forms * * @return array */ public function get_forms() { $forms = []; $items = Caldera_Forms_Forms::get_forms(); foreach ( $items as $item ) { $forms[] = Caldera_Forms_Forms::get_form( $item ); } return $forms; } /** * Get form name * * @param object $form * * @return string */ public function get_form_name( $form ) { return $form['name']; } /** * Get the form id * * @param mixed $form * * @return int */ protected function get_form_id( $form ) { return $form['ID']; } /** * Get the form fields * * @param object $form * * @return array */ public function get_form_fields( $form ) { $form_fields = []; $fields = Caldera_Forms_Forms::get_fields( $form ); foreach ( $fields as $name => $field ) { if ( isset( $field['config']['type_override'] ) && $field['config']['type_override'] ) { $field['type'] = $field['config']['type_override']; } switch ( $field['type'] ) { case 'text': case 'email': case 'textarea': case 'date': case 'url': case 'phone_better': case 'paragraph': if ( $field['type'] == 'phone_better' ) { $field['type'] = 'text'; } if ( $field['type'] == 'paragraph' ) { $field['type'] = 'textarea'; } $form_fields[] = $this->get_form_field( $field['type'], [ 'required' => isset( $field['required'] ) ? 'yes' : 'no', 'label' => $field['label'], 'name' => $field['slug'], 'css' => $field['config']['custom_class'], ] ); break; case 'select': case 'radio': case 'checkbox': case 'dropdown': if ( $field['type'] == 'dropdown' ) { $field['type'] = 'select'; } $form_fields[] = $this->get_form_field( $field['type'], [ 'required' => isset( $field['required'] ) ? 'yes' : 'no', 'label' => $field['label'], 'name' => $field['slug'], 'css' => $field['config']['custom_class'], 'options' => $this->get_option( $field['config']['option'] ), ] ); break; case 'range': case 'number': $form_fields[] = $this->get_form_field( $field['type'], [ 'required' => isset( $field['required'] ) ? 'yes' : 'no', 'label' => $field['label'], 'name' => $field['slug'], 'css' => $field['config']['custom_class'], 'step_text_field' => $field['config']['step'], 'min_value_field' => $field['config']['min'], 'max_value_field' => $field['config']['max'], ] ); break; case 'star_rating': if ( empty( $field['config']['number'] ) ) { $field['config']['number'] = 5; } $form_fields[] = $this->get_form_field( 'ratings', [ 'required' => isset( $field['required'] ) ? 'yes' : 'no', 'label' => $field['label'], 'name' => $field['slug'], 'css' => $field['config']['custom_class'], 'options' => array_combine( range( 1, $field['config']['number'] ), range( 1, $field['config']['number'] ) ), ] ); break; case 'advanced_file': $form_fields[] = $this->get_form_field( 'file', [ 'required' => isset( $field['required'] ) ? 'yes' : 'no', 'label' => $field['label'], 'name' => $field['slug'], 'css' => $field['config']['custom_class'], 'help' => $field['caption'], ] ); break; case 'button': $this->submit_text = $field['label']; break; } } return $form_fields; } /** * Get form settings * * @param object $form * * @return array */ public function get_form_settings( $form ) { $default = $this->get_default_form_settings(); $settings = wp_parse_args( [ 'message' => $form['success'], ], $default ); if ( $this->submit_text ) { $settings['submit_text'] = $this->submit_text; } return $settings; } /** * Format options * * @param object $options * * @return array */ public function get_option( $options ) { $_options = []; foreach ( $options as $key => $option ) { $label = !empty( $option['label'] ) ? $option['label'] : 'Option - ' . $key; $value = !empty( $option['value'] ) ? $option['value'] : $label; $_options[$value] = $label; } return $_options; } /** * Get form notifications * * @param object $form * * @return array */ public function get_form_notifications( $form ) { $notifications = [ [ 'active' => $form['mailer']['on_insert'] ? 'true' : 'false', 'name' => 'Admin Notification', 'subject' => isset( $form['mailer']['email_subject'] ) ? $form['mailer']['email_subject'] : 'Admin Notification', 'to' => isset( $form['mailer']['recipients'] ) ? $form['mailer']['recipients'] : '{admin_email}', 'replyTo' => '{field:your-email}', 'message' => '{all_fields}', 'fromName' => '{site_name}', 'fromAddress' => '{admin_email}', 'cc' => '', 'bcc' => '', ], ]; // $processors = array(); // if(isset($form['processors'])){ // $processors = $form['processors']; // } // // foreach ($processors as $key => $processor){ // if($processor['type'] == 'auto_responder'){ // $config = $processor['config']; // $notifications[] = array( // 'active' => true, // 'name' => 'Admin Notification', // 'subject' => $config['subject'], // 'to' => $config['recipient_email'], // 'replyTo' => '{field:your-email}', // 'message' => '{all_fields}', // 'fromName' => '{site_name}', // 'fromAddress' => '{admin_email}', // 'cc' => '', // 'bcc' => '', // ); // } // } return $notifications; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.32 | Генерация страницы: 0.09 |
proxy
|
phpinfo
|
Настройка