| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/StockAdjust/wp-content/plugins/wp-user-avatar/src/NavigationMenuLinks/ |
Upload File : |
<?php
namespace ProfilePress\Core\NavigationMenuLinks;
class Init
{
public static function init()
{
register_activation_hook(PROFILEPRESS_SYSTEM_FILE_PATH, function () {
// deactivate https://wordpress.org/plugins/wp-navigation-menu-links/ since it's now in core
$path = 'wp-navigation-menu-links/pp-navigation-menu-links.php';
if (is_plugin_active($path)) {
deactivate_plugins($path);
}
});
add_action('plugins_loaded', function () {
Backend::get_instance();
Frontend::get_instance();
});
}
}