SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > members > admin >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/members/admin/

NameTypeSizeLast ModifiedActions
config Directory - -
tmpl Directory - -
views Directory - -
class-addon.php File 3567 bytes November 30 2024 06:41:08.
class-cap-control.php File 3114 bytes November 30 2024 06:41:08.
class-cap-section.php File 2271 bytes November 30 2024 06:41:08.
class-cap-tabs.php File 6141 bytes November 30 2024 06:41:08.
class-manage-roles.php File 3696 bytes November 30 2024 06:41:08.
class-manage-users.php File 12475 bytes November 30 2024 06:41:08.
class-meta-box-content-permissions.php File 16201 bytes November 30 2024 06:41:08.
class-meta-box-custom-cap.php File 2257 bytes November 30 2024 06:41:08.
class-meta-box-publish-role.php File 4388 bytes November 30 2024 06:41:08.
class-notifications.php File 29224 bytes October 25 2022 04:11:30.
class-review-prompt.php File 5075 bytes November 30 2024 06:41:08.
class-role-edit.php File 11388 bytes May 21 2025 02:04:48.
class-role-list-table.php File 13950 bytes November 30 2024 06:41:08.
class-role-new.php File 13681 bytes November 30 2024 06:41:08.
class-roles.php File 8745 bytes November 30 2024 06:41:08.
class-settings.php File 31726 bytes November 30 2024 06:41:08.
class-user-edit.php File 5950 bytes November 30 2024 06:41:08.
class-user-new.php File 5627 bytes November 30 2024 06:41:08.
functions-addons.php File 2251 bytes November 30 2024 06:41:08.
functions-admin.php File 8941 bytes December 23 2024 23:27:22.
functions-help.php File 5635 bytes November 30 2024 06:41:08.
functions-settings.php File 2950 bytes November 30 2024 06:41:08.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/members/admin//functions-help.php

<?php
/**
 * Callback functions for outputting help tabs in the admin.
 *
 * @package    Members
 * @subpackage Admin
 * @author     The MemberPress Team 
 * @copyright  Copyright (c) 2009 - 2018, The MemberPress Team
 * @link       https://members-plugin.com/
 * @license    http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 */

/**
 * Help sidebar for all of the help tabs.
 *
 * @since  1.0.0
 * @access public
 * @return string
 */
function members_get_help_sidebar_text() {

	// Get docs and help links.
	$docs_link = sprintf( '<li><a href="https://members-plugin.com/docs/">%s</a></li>', esc_html__( 'Documentation',  'members' ) );
	$help_link = sprintf( '<li><a href="https://wordpress.org/support/plugin/members/">%s</a></li>', esc_html__( 'Support Forums', 'members' ) );

	// Return the text.
	return sprintf(
		'<p><strong>%s</strong></p><ul>%s%s</ul>',
		esc_html__( 'For more information:', 'members' ),
		$docs_link,
		$help_link
	);
}

/**
 * Edit role overview help tab args.
 *
 * @since  1.0.0
 * @access public
 * @return array
 */
function members_get_edit_role_help_overview_args() {

	return array(
		'id'       => 'overview',
		'title'    => esc_html__( 'Overview', 'members' ),
		'callback' => 'members_edit_role_help_overview_cb'
	);
}

/**
 * Edit role name help tab args.
 *
 * @since  1.0.0
 * @access public
 * @return array
 */
function members_get_edit_role_help_role_name_args() {

	return array(
		'id'       => 'role-name',
		'title'    => esc_html__( 'Role Name', 'members' ),
		'callback' => 'members_edit_role_help_role_name_cb'
	);
}

/**
 * Edit role edit caps help tab args.
 *
 * @since  1.0.0
 * @access public
 * @return array
 */
function members_get_edit_role_help_edit_caps_args() {

	return array(
		'id'       => 'edit-capabilities',
		'title'    => esc_html__( 'Edit Capabilities', 'members' ),
		'callback' => 'members_edit_role_help_edit_caps_cb'
	);
}

/**
 * Edit role custom cap help tab args.
 *
 * @since  1.0.0
 * @access public
 * @return array
 */
function members_get_edit_role_help_custom_cap_args() {

	return array(
		'id'       => 'custom-capability',
		'title'    => esc_html__( 'Custom Capability', 'members' ),
		'callback' => 'members_edit_role_help_custom_cap_cb'
	);
}

/**
 * Edit role overview help tab callback function.
 *
 * @since  1.0.0
 * @access public
 * @return void
 */
function members_edit_role_help_overview_cb() { ?>

	<p>
		<?php esc_html_e( 'This screen allows you to edit an individual role and its capabilities.', 'members' ); ?>
	<p>

	<p>
		<?php printf(
			esc_html__( 'Visit the %s page in the WordPress Codex to see a complete list of roles, capabilities, and their definitions.', 'members' ),
			'<a href="https://codex.wordpress.org/Roles_and_Capabilities">' . esc_html__( 'Roles and Capabilities', 'members' ) . '</a>'
		); ?>
	</p>
<?php }

/**
 * Edit role name help tab callback function.
 *
 * @since  1.0.0
 * @access public
 * @return void
 */
function members_edit_role_help_role_name_cb() { ?>

	<p>
		<?php esc_html_e( 'The role name field allows you to enter a human-readable name for your role.', 'members' ); ?>
	</p>

	<p>
		<?php esc_html_e( 'The machine-readable version of the role appears below the name field, which you can edit. This can only have lowercase letters, numbers, or underscores.', 'members' ); ?>
	</p>
<?php }

/**
 * Edit role edit caps help tab callback function.
 *
 * @since  1.0.0
 * @access public
 * @return void
 */
function members_edit_role_help_edit_caps_cb() { ?>

	<p>
		<?php esc_html_e( 'The capabilities edit box is made up of tabs that separate capabilities into groups. You may take the following actions for each capability:', 'members' ); ?>
	</p>

	<ul>
		<li><?php _e( '<strong>Grant</strong> allows you to grant the role a capability.', 'members' ); ?></li>
		<li><?php _e( '<strong>Deny</strong> allows you to explicitly deny the role a capability.', 'members' ); ?></li>
		<li><?php esc_html_e( 'You may also opt to neither grant nor deny the role a capability.', 'members' ); ?></li>
	</ul>
<?php }

/**
 * Edit role custom cap help tab callback function.
 *
 * @since  1.0.0
 * @access public
 * @return void
 */
function members_edit_role_help_custom_cap_cb() { ?>

	<p>
		<?php esc_html_e( 'The custom capability box allows you to create a custom capability for the role. After hitting the Add New button, it will add the capability to the Custom tab in the Edit Capabilities box.', 'members' ); ?>
	</p>
<?php }

/**
 * Displays info for upgrading to MemberPress
 *
 * @since  2.3.0
 * @access public
 * @param  string $link Link for button
 * @return void
 */
function members_memberpress_upgrade( $link = 'https://memberpress.com/plans/pricing' ) { ?>

	<div class="mepr-upgrade">
		<div class="mepr-upgrade-wrap">
			<div class="mepr-upgrade-content">
				<h2>Charge Members for Your Protected Content</h2>
				<h4>Members Lite cannot access payments.</h4>
				<p>Once you add MemberPress, you'll be able to charge your members for access to your content.</p>
				<ul class="features">
					<li>Charge for Access to Content</li>
					<li>Create Memberships, Courses, and Coaching Programs</li>
					<li>Manage Members</li>
					<li>Advanced Reports</li>
					<li>Recurring Payments</li>
					<li>Pro-rated Upgrades</li>
					<li>Centralized Protected Content Management</li>
					<li>Email Marketing Integrations</li>
				</ul>
			</div>
			<div class="mepr-upgrade-cta">
				<a href="<?php echo esc_url( $link ); ?>" id="mepr_cta_upgrade_link" class="mepr-cta-button">Add MemberPress Now</a>
				and start charging for access!
			</div>
		</div>
	</div>

	<?php
}

SILENT KILLER Tool