🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 20:16:54 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
public_html
/
wp-content
/
themes
/
hello-elementor
/
modules
/
admin-home
/
components
📍 /home/therahul/public_html/wp-content/themes/hello-elementor/modules/admin-home/components
🔄 Refresh
✏️
Editing: scripts-controller.php
Writable
<?php namespace HelloTheme\Modules\AdminHome\Components; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } use HelloTheme\Includes\Script; class Scripts_Controller { public function __construct() { add_action( 'admin_enqueue_scripts', [ $this, 'admin_enqueue_scripts' ] ); } public function admin_enqueue_scripts() { $screen = get_current_screen(); if ( 'toplevel_page_' . EHP_THEME_SLUG !== $screen->id ) { return; } $script = new Script( 'hello-home-app', [ 'wp-util' ] ); $script->enqueue(); } }
💾 Save Changes
❌ Cancel