| Server IP : 43.130.17.34 / Your IP : 216.73.217.6 Web Server : nginx/1.28.0 System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/yespkg.com/wp-content/plugins/admin-menu-editor-pro/extras/ |
Upload File : |
<?php
require_once __DIR__ . '/../includes/AmeAutoloader.php';
use YahnisElsts\AdminMenuEditor\AmeAutoloader;
use YahnisElsts\WpDependencyWrapper\ScriptDependency;
$wsAmeProAutoloader = new AmeAutoloader([
'YahnisElsts\\AdminMenuEditor\\ProCustomizable\\' => __DIR__ . '/pro-customizables',
'YahnisElsts\\AdminMenuEditor\\StyleGenerator\\' => __DIR__ . '/style-generator/',
'YahnisElsts\\AdminMenuEditor\\DynamicStylesheets\\' => __DIR__ . '/dynamic-stylesheets/',
'YahnisElsts\\WpDependencyWrapper\\' => __DIR__ . '/../wp-dependency-wrapper',
'YahnisElsts\\AdminMenuEditor\\DashboardStyler\\' => __DIR__ . '/modules/dashboard-styler',
'YahnisElsts\\AdminMenuEditor\\WebpackRegistry\\' => __DIR__ . '/webpack-registry',
]);
$wsAmeProAutoloader->register();
//Additionally, "autoload" JS scripts by registering them before they're used.
//Other modules can then enqueue them or add them as dependencies.
//
//This file only registers scripts that are not part of a specific module. Specific
//modules can register their own scripts in their own hooks.
if ( function_exists('add_action') ) {
/**
* Register JS assets used on AME pages.
*
* @param \WPMenuEditor $menuEditor
* @return void
*/
function ws_ame_register_customizable_js_lib($menuEditor) {
static $isDone = false;
if ( $isDone ) {
return;
}
$isDone = true;
//Register client-side setting classes and view models.
$customizableDependencies = [
'ame-mini-functional-lib',
'ame-knockout',
'ame-lodash',
];
$customizableBase = ScriptDependency::create(
plugins_url('pro-customizables/assets/customizable.js', __FILE__),
'ame-customizable-settings'
)
->addDependencies(...$customizableDependencies)
->setTypeToModule()
->register();
//Webpack bundle of the above. Technically not an ES6 module.
$useBundles = defined('WS_AME_USE_BUNDLES') && WS_AME_USE_BUNDLES
&& file_exists(AME_ROOT_DIR . '/dist/customizable.bundle.js');
if ( $useBundles && $menuEditor ) {
$registry = $menuEditor->get_webpack_registry();
$customizableBundle = $registry->getWebpackScriptChunk('customizable');
$customizableBundle->addDependencies(...$customizableDependencies);
$customizableBundle->register();
}
//Register style generator stuff.
ScriptDependency::create(
plugins_url('style-generator/style-generator.js', __FILE__),
'ame-style-generator'
)
->addDependencies(
$customizableBase,
'ame-knockout',
'ame-lodash',
'ame-mini-functional-lib',
'jquery-color'
)
->setTypeToModule()
->register();
}
add_action('admin_menu_editor-register_scripts', 'ws_ame_register_customizable_js_lib', 9);
}