| Server IP : 45.33.98.47 / Your IP : 216.73.217.106 Web Server : Apache/2.4.66 (Debian) System : Linux 8783c923f53b 6.8.0-51-generic #52-Ubuntu SMP PREEMPT_DYNAMIC Thu Dec 5 13:09:44 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/wpforms-lite/src/Integrations/WPCode/ |
Upload File : |
<?php
namespace WPForms\Integrations\WPCode;
use WPForms\Integrations\IntegrationInterface;
/**
* Register the WPCode library username.
*
* @since 1.8.5
*/
class RegisterLibrary implements IntegrationInterface {
/**
* Determine if the class is allowed to load.
*
* @since 1.8.5
*
* @return bool
* @noinspection PhpMissingReturnTypeInspection
* @noinspection ReturnTypeCanBeDeclaredInspection
*/
public function allow_load() {
return is_admin();
}
/**
* Load the class.
*
* @since 1.8.5
*/
public function load() {
$this->hooks();
}
/**
* Hooks.
*
* @since 1.8.5
*/
private function hooks() {
add_action( 'plugins_loaded', [ $this, 'wpforms_register_wpcode_username' ], 20 );
}
/**
* Register a WPCode Library username so that it's loaded in the library inside the WPCode plugin.
*
* @since 1.8.5
*/
public function wpforms_register_wpcode_username() {
if ( ! function_exists( 'wpcode_register_library_username' ) ) {
return;
}
wpcode_register_library_username( 'wpforms', 'WPForms' );
}
}