HEX
Server: LiteSpeed
System: Linux premium283.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: citaqlmd (746)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/citaqlmd/nt.lmskreators.com/wp-content/plugins/mycred/includes/shortcodes/mycred_link.php
<?php
if ( ! defined( 'myCRED_VERSION' ) ) exit;

/**
 * myCRED Shortcode: mycred_link
 * This shortcode allows you to award or deduct points from the current user
 * when their click on a link. The shortcode will generate an anchor element
 * and call the mycred-click-link jQuery script which will award the points.
 *
 * Note! Only HTML5 anchor attributes are supported and this shortcode is only
 * available if the hook is enabled!
 *
 * @see http://codex.mycred.me/shortcodes/mycred_link/
 * @since 1.1
 * @version 1.4
 */
if ( ! function_exists( 'mycred_render_shortcode_link' ) ) :
	function mycred_render_shortcode_link( $atts, $link_title = '' ) {

		global $mycred_link_points;

		// Sanitize input attributes
		$atts = shortcode_atts( array(
			'id'       => '',
			'rel'      => '',
			'class'    => '',
			'href'     => '',
			'title'    => '',
			'target'   => '',
			'style'    => '',
			'amount'   => 0,
			'ctype'    => MYCRED_DEFAULT_TYPE_KEY,
			'hreflang' => '',
			'media'    => '',
			'type'     => '',
			'onclick'  => ''
		), $atts, MYCRED_SLUG . '_link' );

		// Make sure point type exists
		if ( ! mycred_point_type_exists( sanitize_text_field( $atts['ctype'] ) ) ) {
			$atts['ctype'] = MYCRED_DEFAULT_TYPE_KEY;
		}

		// HREF is required - Sanitize URL
		if ( empty( $atts['href'] ) ) {
			$atts['href'] = '#';
		} else {
			$atts['href'] = esc_url( $atts['href'] );
		}

		// All links must contain the 'mycred-points-link' class
		if ( empty( $atts['class'] ) ) {
			$atts['class'] = 'mycred-points-link';
		} else {
			$atts['class'] = 'mycred-points-link ' . esc_attr( $atts['class'] );
		}

		// If no id exists, generate one - Sanitize ID creation
		if ( empty( $atts['id'] ) ) {
			$id = str_replace( array( 'http://', 'https://', 'http%3A%2F%2F', 'https%3A%2F%2F' ), 'hs', esc_url( $atts['href'] ) );
			$id = str_replace( array( '/', '-', '_', ':', '.', '?', '=', '+', '\\', '%2F' ), '', $id );
			$atts['id'] = sanitize_html_class( $id );
		}

		// Construct anchor attributes
		$attr = array();
		foreach ( $atts as $attribute => $value ) {
			if ( ! empty( $value ) && ! in_array( $attribute, array( 'amount', 'ctype' ) ) ) {
				$attr[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
			}
		}

		// Add point type as a data attribute
		$attr[] = 'data-type="' . esc_attr( $atts['ctype'] ) . '"';

		// Only usable for members
		if ( is_user_logged_in() ) {

			// If amount is zero, use the amount we set in the hooks settings
			if ( $atts['amount'] == 0 ) {

				// Get hook settings
				$prf_hook = apply_filters( 'mycred_option_id', 'mycred_pref_hooks' );
				$hooks = mycred_get_option( $prf_hook, false );
				if ( $atts['ctype'] != MYCRED_DEFAULT_TYPE_KEY ) {
					$hooks = mycred_get_option( 'mycred_pref_hooks_' . sanitize_key( $atts['ctype'] ), false );
				}

				// Apply points value
				if ( $hooks !== false && is_array( $hooks ) && array_key_exists( 'link_click', $hooks['hook_prefs'] ) ) {
					$atts['amount'] = intval( $hooks['hook_prefs']['link_click']['creds'] );
				}

			}

			// Add token for the link
			$token  = mycred_create_token( array( $atts['amount'], $atts['ctype'], $atts['id'], urlencode( $atts['href'] ) ) );
			$attr[] = 'data-token="' . esc_attr( $token ) . '"';

			// Ensure jQuery script is called
			$mycred_link_points = true;

		}

		// Return the rendered anchor tag
		return apply_filters( 'mycred_link', '<a ' . implode( ' ', $attr ) . '>' . wp_kses_post( do_shortcode( $link_title ) ) . '</a>', $atts, $link_title );

	}
endif;

add_shortcode( MYCRED_SLUG . '_link', 'mycred_render_shortcode_link' );