kollapsminoriteten/wp-content/plugins/jetpack/modules/contact-form.php

31 lines
798 B
PHP
Raw Permalink Normal View History

2019-11-15 23:26:29 +01:00
<?php
2022-12-15 17:41:53 +01:00
/**
* Contact form module.
*
* @package automattic/jetpack
*/
2025-02-28 08:42:11 +01:00
if ( ! defined( 'ABSPATH' ) ) {
exit( 0 );
}
2023-04-26 17:39:43 +02:00
use Automattic\Jetpack\Forms\Jetpack_Forms;
2019-11-15 23:26:29 +01:00
/**
2025-02-28 08:42:11 +01:00
* Module Name: Forms
2025-07-27 19:58:08 +02:00
* Module Description: Add contact, registration, and feedback forms directly from the block editor.
2019-11-15 23:26:29 +01:00
* Sort Order: 15
* Recommendation Order: 14
* First Introduced: 1.3
* Requires Connection: No
* Auto Activate: Yes
* Module Tags: Other
* Feature: Writing
2023-12-07 09:44:11 +01:00
* Additional Search Queries: contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free, creator
2019-11-15 23:26:29 +01:00
*/
2023-04-26 17:39:43 +02:00
/**
2025-02-28 08:42:11 +01:00
* Load the newer Jetpack Forms package.
2022-12-15 17:41:53 +01:00
*/
2025-02-28 08:42:11 +01:00
Jetpack_Forms::load_contact_form();