| Server IP : 172.67.75.225 / Your IP : 216.73.216.185 Web Server : nginx/1.27.1 System : Linux us-1 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 User : vinodai ( 3134) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v1396/videnn/public_html/wp-content/plugins/wpforms-lite/src/Lite/Admin/Education/ |
Upload File : |
<?php
namespace WPForms\Lite\Admin\Education;
/**
* Education core for Lite.
*
* @since 1.6.6
*/
class Core extends \WPForms\Admin\Education\Core {
/**
* Hooks.
*
* @since 1.6.6
*/
protected function hooks() {
parent::hooks();
add_action( 'admin_enqueue_scripts', [ $this, 'enqueues' ] );
}
/**
* Load enqueues.
*
* @since 1.6.6
*/
public function enqueues() {
parent::enqueues();
$min = wpforms_get_min_suffix();
wp_enqueue_script(
'wpforms-lite-admin-education-core',
WPFORMS_PLUGIN_URL . "assets/lite/js/admin/education/core{$min}.js",
[ 'wpforms-admin-education-core' ],
WPFORMS_VERSION,
false
);
// Builder Education styles.
if ( wpforms_is_admin_page( 'builder' ) ) {
wp_enqueue_style(
'wpforms-lite-admin-education-builder',
WPFORMS_PLUGIN_URL . "assets/lite/css/builder-education{$min}.css",
[],
WPFORMS_VERSION
);
}
}
}