GRAYBYTE WORDPRESS FILE MANAGER7429

Server IP : 162.213.255.40 / Your IP : 216.73.216.114
System : Linux server146.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF

HOME

/home/hellrfbn/public_html/wp-content/updraft/plugins-old/jetpack/modules/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/hellrfbn/public_html/wp-content/updraft/plugins-old/jetpack/modules//contact-form.php
<?php
/**
 * Contact form module.
 *
 * @package automattic/jetpack
 */

use Automattic\Jetpack\Forms\Jetpack_Forms;

/**
 * Module Name: Contact Form
 * Module Description: Add a customizable contact form to any post or page using the Jetpack Form Block.
 * Sort Order: 15
 * Recommendation Order: 14
 * First Introduced: 1.3
 * Requires Connection: No
 * Auto Activate: Yes
 * Module Tags: Other
 * Feature: Writing
 * 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
 */

/**
 * Load the newer Jetpack Forms package.
 */
Jetpack_Forms::load_contact_form();

/**
 * Register Jetpack Form patterns
 *
 * @deprecated 13.4 Use Automattic\Jetpack\Forms\ContactForm\Util::register_pattern
 */
function jetpack_form_register_pattern() {
	_deprecated_function( __METHOD__, 'jetpack-13.4', 'Automattic\Jetpack\Forms\ContactForm\Util::register_pattern' );
	$category_slug = 'forms';
	register_block_pattern_category( $category_slug, array( 'label' => __( 'Forms', 'jetpack' ) ) );

	$patterns = array(
		'contact-form'      => array(
			'title'      => 'Contact Form',
			'blockTypes' => array( 'jetpack/contact-form' ),
			'categories' => array( $category_slug ),
			'content'    => '<!-- wp:jetpack/contact-form {"style":{"spacing":{"padding":{"top":"16px","right":"16px","bottom":"16px","left":"16px"}}}} -->
				<div class="wp-block-jetpack-contact-form" style="padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px">
					<!-- wp:jetpack/field-name {"required":true} /-->
					<!-- wp:jetpack/field-email {"required":true} /-->
					<!-- wp:jetpack/field-textarea /-->
					<!-- wp:jetpack/button {"element":"button","text":"Contact Us","lock":{"remove":true}} /-->
				</div>
				<!-- /wp:jetpack/contact-form -->',
		),
		'newsletter-form'   => array(
			'title'      => 'Newsletter Subscription Form',
			'blockTypes' => array( 'jetpack/contact-form' ),
			'categories' => array( $category_slug ),
			'content'    => '<!-- wp:jetpack/contact-form {"style":{"spacing":{"padding":{"top":"16px","right":"16px","bottom":"16px","left":"16px"}}}} -->
				<div class="wp-block-jetpack-contact-form" style="padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px">
					<!-- wp:jetpack/field-name {"required":true} /-->
					<!-- wp:jetpack/field-email {"required":true} /-->
					<!-- wp:jetpack/field-consent /-->
					<!-- wp:jetpack/button {"element":"button","text":"Subscribe","lock":{"remove":true}} /-->
				</div>
				<!-- /wp:jetpack/contact-form -->',
		),
		'rsvp-form'         => array(
			'title'      => 'RSVP Form',
			'blockTypes' => array( 'jetpack/contact-form' ),
			'categories' => array( $category_slug ),
			'content'    => '<!-- wp:jetpack/contact-form {"subject":"A new RSVP from your website","style":{"spacing":{"padding":{"top":"16px","right":"16px","bottom":"16px","left":"16px"}}}} -->
				<div class="wp-block-jetpack-contact-form" style="padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px">
					<!-- wp:jetpack/field-name {"required":true} /-->
					<!-- wp:jetpack/field-email {"required":true} /-->
					<!-- wp:jetpack/field-radio {"label":"Attending?","required":true,"options":["Yes","No"]} /-->
					<!-- wp:jetpack/field-textarea {"label":"Other Details"} /-->
					<!-- wp:jetpack/button {"element":"button","text":"Send RSVP","lock":{"remove":true}} /-->
				</div>
				<!-- /wp:jetpack/contact-form -->',
		),
		'registration-form' => array(
			'title'      => 'Registration Form',
			'blockTypes' => array( 'jetpack/contact-form' ),
			'categories' => array( $category_slug ),
			'content'    => '<!-- wp:jetpack/contact-form {"subject":"A new registration from your website","style":{"spacing":{"padding":{"top":"16px","right":"16px","bottom":"16px","left":"16px"}}}} -->
				<div class="wp-block-jetpack-contact-form" style="padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px">
					<!-- wp:jetpack/field-name {"required":true} /-->
					<!-- wp:jetpack/field-email {"required":true} /-->
					<!-- wp:jetpack/field-telephone {"label":"Phone Number"} /-->
					<!-- wp:jetpack/field-select {"label":"How did you hear about us?","options":["Search Engine","Social Media","TV","Radio","Friend or Family"]} /-->
					<!-- wp:jetpack/field-textarea {"label":"Other Details"} /-->
					<!-- wp:jetpack/button {"element":"button","text":"Send","lock":{"remove":true}} /-->
				</div>
				<!-- /wp:jetpack/contact-form -->',
		),
		'appointment-form'  => array(
			'title'      => 'Appointment Form',
			'blockTypes' => array( 'jetpack/contact-form' ),
			'categories' => array( $category_slug ),
			'content'    => '<!-- wp:jetpack/contact-form {"subject":"A new appointment booked from your website","style":{"spacing":{"padding":{"top":"16px","right":"16px","bottom":"16px","left":"16px"}}}} -->
				<div class="wp-block-jetpack-contact-form" style="padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px">
					<!-- wp:jetpack/field-name {"required":true} /-->
					<!-- wp:jetpack/field-email {"required":true} /-->
					<!-- wp:jetpack/field-telephone {"required":true} /-->
					<!-- wp:jetpack/field-date {"label":"Date","required":true} /-->
					<!-- wp:jetpack/field-radio {"label":"Time","required":true,"options":["Morning","Afternoon"]} /-->
					<!-- wp:jetpack/field-textarea {"label":"Notes"} /-->
					<!-- wp:jetpack/button {"element":"button","text":"Book Appointment","lock":{"remove":true}} /-->
				</div>
				<!-- /wp:jetpack/contact-form -->',
		),
		'feedback-form'     => array(
			'title'      => 'Feedback Form',
			'blockTypes' => array( 'jetpack/contact-form' ),
			'categories' => array( $category_slug ),
			'content'    => '<!-- wp:jetpack/contact-form {"subject":"New feedback received from your website","style":{"spacing":{"padding":{"top":"16px","right":"16px","bottom":"16px","left":"16px"}}}} -->
				<div class="wp-block-jetpack-contact-form" style="padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px">
					<!-- wp:jetpack/field-name {"required":true} /-->
					<!-- wp:jetpack/field-email {"required":true} /-->
					<!-- wp:jetpack/field-radio {"label":"Please rate our website","required":true,"options":["1 - Very Bad","2 - Poor","3 - Average","4 - Good","5 - Excellent"]} /-->
					<!-- wp:jetpack/field-textarea {"label":"How could we improve?"} /-->
					<!-- wp:jetpack/button {"element":"button","text":"Send Feedback","lock":{"remove":true}} /-->
				</div>
				<!-- /wp:jetpack/contact-form -->',
		),
	);

	foreach ( $patterns as $name => $pattern ) {
		register_block_pattern( $name, $pattern );
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
calypsoify
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
carousel
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
cloudflare-analytics
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
comment-likes
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
comments
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
custom-css
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
custom-post-types
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
geo-location
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
google-analytics
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
google-fonts
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
gravatar
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
infinite-scroll
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
likes
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
markdown
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
masterbar
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
memberships
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
photon-cdn
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
plugin-search
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
post-by-email
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
related-posts
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
scan
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
seo-tools
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
sharedaddy
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
shortcodes
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
simple-payments
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
site-icon
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
sitemaps
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
sso
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
stats
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
subscriptions
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
theme-tools
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
tiled-gallery
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
verification-tools
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
videopress
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
widget-visibility
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
widgets
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
woocommerce-analytics
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
wordads
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
wpcom-block-editor
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
wpcom-tos
--
July 23 2025 07:38:27
hellrfbn / hellrfbn
0755
.htaccess
0.41 KB
July 23 2025 07:38:27
hellrfbn / hellrfbn
0644
blaze.php
0.963 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
carousel.php
0.56 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
comment-likes.php
7.815 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
comments.php
1.058 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
contact-form.php
6.656 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
copy-post.php
12.801 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
custom-content-types.php
1.533 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
custom-css.php
1.793 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
geo-location.php
2.438 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
google-analytics.php
0.637 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
google-fonts.php
0.521 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
gravatar-hovercards.php
11.836 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
infinite-scroll.php
8.189 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
json-api.php
0.473 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
latex.php
4.609 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
likes.php
19.646 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
markdown.php
0.983 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
masterbar.php
1.744 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
module-extras.php
2.855 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
module-headings.php
44.438 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
module-info.php
27.25 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
monitor.php
3.506 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
notes.php
7.925 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
photon-cdn.php
12.174 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
photon.php
0.694 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
plugin-search.php
21.577 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
post-by-email.php
0.582 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
post-list.php
0.521 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
protect.php
0.678 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
publicize.php
4.048 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
related-posts.php
2.142 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
search.php
1.174 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
seo-tools.php
1.521 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
sharedaddy.php
1.597 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
shortcodes.php
6.063 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
shortlinks.php
4.399 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
sitemaps.php
1.278 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
sso.php
0.76 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
stats.php
54.622 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
subscriptions.php
32.574 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
theme-tools.php
2.518 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
tiled-gallery.php
1.055 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
vaultpress.php
1.769 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
verification-tools.php
0.811 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
videopress.php
0.983 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
waf.php
0.29 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
widget-visibility.php
0.464 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
widgets.php
2.86 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
woocommerce-analytics.php
0.527 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
wordads.php
0.572 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644
wpgroho.js
1.907 KB
June 11 2024 05:16:28
hellrfbn / hellrfbn
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF