helix/helix.php
Abhijit Bhatnagar 01a7f967a4 lint fixes
2025-08-10 00:09:35 +05:30

19 lines
509 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Main plugin file that bootstraps the Helix admin interface.
*
* @package Helix
*/
/**
* Plugin Name: Helix Modern WP Admin
* Description: A React-powered replacement for the WordPress admin UI.
* Version: 0.1.0
* Author: Abhijit Bhatnagar
*/
require_once __DIR__ . '/admin/init.php';
require_once __DIR__ . '/admin/rest-routes.php';
require_once __DIR__ . '/admin/disable-wp-admin.php';
require_once __DIR__ . '/admin/menu-customization.php';
require_once __DIR__ . '/enqueue.php';