????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/cwd/wp-content/plugins/jetpack/extensions/blocks/contact-form/ |
Upload File : |
<?php /** * Contact Form Block. * * @package automattic/jetpack */ namespace Automattic\Jetpack\Extensions\Contact_Form; // Register the block add_action( 'init', array( Contact_Form_Block::class, 'register_block' ), 9 ); // Load scripts for the editing interface add_action( 'enqueue_block_editor_assets', array( Contact_Form_Block::class, 'load_editor_scripts' ), 9 ); // Load styles in the editor iframe context if ( is_admin() ) { add_action( 'enqueue_block_assets', array( Contact_Form_Block::class, 'load_editor_styles' ), 9 ); }