canonical-urls
5 months ago
carousel
4 months ago
comment-likes
9 months ago
comments
8 months ago
custom-post-types
6 months ago
external-media
9 months ago
google-fonts
7 months ago
gravatar
6 years ago
infinite-scroll
5 months ago
likes
8 months ago
markdown
9 months ago
memberships
4 months ago
photon-cdn
4 months ago
plugin-search
9 months ago
post-by-email
9 months ago
related-posts
6 months ago
scan
5 months ago
seo-tools
5 months ago
sharedaddy
6 months ago
shortcodes
6 months ago
simple-payments
9 months ago
site-icon
9 months ago
sitemaps
9 months ago
stats
8 months ago
subscriptions
4 months ago
theme-tools
6 months ago
tiled-gallery
9 months ago
verification-tools
9 months ago
videopress
5 months ago
widget-visibility
9 months ago
widgets
6 months ago
woocommerce-analytics
8 months ago
wordads
4 months ago
wpcom-tos
8 months ago
account-protection.php
4 months ago
blaze.php
9 months ago
blocks.php
9 months ago
canonical-urls.php
6 months ago
carousel.php
9 months ago
comment-likes.php
9 months ago
comments.php
5 months ago
contact-form.php
9 months ago
copy-post.php
7 months ago
custom-content-types.php
4 months ago
google-fonts.php
9 months ago
gravatar-hovercards.php
9 months ago
infinite-scroll.php
9 months ago
json-api.php
9 months ago
latex.php
9 months ago
likes.php
7 months ago
markdown.php
9 months ago
module-extras.php
9 months ago
module-headings.php
4 months ago
module-info.php
6 months ago
monitor.php
9 months ago
notes.php
8 months ago
photon-cdn.php
9 months ago
photon.php
9 months ago
plugin-search.php
6 months ago
post-by-email.php
4 months ago
post-list.php
9 months ago
protect.php
4 months ago
publicize.php
9 months ago
related-posts.php
4 months ago
search.php
9 months ago
seo-tools.php
9 months ago
sharedaddy.php
6 months ago
shortcodes.php
9 months ago
shortlinks.php
9 months ago
simple-payments.php
9 months ago
sitemaps.php
9 months ago
sso.php
9 months ago
stats.php
8 months ago
subscriptions.php
4 months ago
theme-tools.php
9 months ago
tiled-gallery.php
9 months ago
vaultpress.php
9 months ago
verification-tools.php
4 months ago
videopress.php
9 months ago
waf.php
9 months ago
widget-visibility.php
9 months ago
widgets.php
9 months ago
woocommerce-analytics.php
9 months ago
wordads.php
9 months ago
wpcom-reader.php
6 months ago
wpgroho.js
1 year ago
contact-form.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Contact form module. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit( 0 ); |
| 10 | } |
| 11 | |
| 12 | use Automattic\Jetpack\Forms\Jetpack_Forms; |
| 13 | |
| 14 | /** |
| 15 | * Module Name: Forms |
| 16 | * Module Description: Add contact, registration, and feedback forms directly from the block editor. |
| 17 | * Sort Order: 15 |
| 18 | * Recommendation Order: 14 |
| 19 | * First Introduced: 1.3 |
| 20 | * Requires Connection: No |
| 21 | * Auto Activate: Yes |
| 22 | * Module Tags: Other |
| 23 | * Feature: Writing |
| 24 | * 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 |
| 25 | */ |
| 26 | |
| 27 | /** |
| 28 | * Load the newer Jetpack Forms package. |
| 29 | */ |
| 30 | Jetpack_Forms::load_contact_form(); |
| 31 |