| Server IP : 51.91.236.193 / Your IP : 216.73.216.224 Web Server : Apache System : Linux webm010.cluster128.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : institutah ( 16501) PHP Version : 7.2.34 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/institutah/www/wp-content/plugins/shortcodes-ultimate/includes/shortcodes/ |
Upload File : |
<?php
su_add_shortcode(
array(
'id' => 'qrcode',
'callback' => 'su_shortcode_qrcode',
'image' => su_get_plugin_url() . 'admin/images/shortcodes/qrcode.svg',
'name' => __( 'QR code', 'shortcodes-ultimate' ),
'type' => 'single',
'group' => 'content',
'atts' => array(
'data' => array(
'default' => '',
'name' => __( 'Data', 'shortcodes-ultimate' ),
'desc' => __( 'The text to store within the QR code. You can use here any text or even URL', 'shortcodes-ultimate' ),
),
'title' => array(
'default' => '',
'name' => __( 'Title', 'shortcodes-ultimate' ),
'desc' => __( 'Enter here short description. This text will be used in alt attribute of QR code', 'shortcodes-ultimate' ),
),
'size' => array(
'type' => 'slider',
'min' => 10,
'max' => 1000,
'step' => 10,
'default' => 200,
'name' => __( 'Size', 'shortcodes-ultimate' ),
'desc' => __( 'Image width and height (in pixels)', 'shortcodes-ultimate' ),
),
'margin' => array(
'type' => 'slider',
'min' => 0,
'max' => 50,
'step' => 5,
'default' => 0,
'name' => __( 'Margin', 'shortcodes-ultimate' ),
'desc' => __( 'Thickness of a margin (in pixels)', 'shortcodes-ultimate' ),
),
'align' => array(
'type' => 'select',
'values' => array(
'none' => __( 'None', 'shortcodes-ultimate' ),
'left' => __( 'Left', 'shortcodes-ultimate' ),
'center' => __( 'Center', 'shortcodes-ultimate' ),
'right' => __( 'Right', 'shortcodes-ultimate' ),
),
'default' => 'none',
'name' => __( 'Align', 'shortcodes-ultimate' ),
'desc' => __( 'Choose image alignment', 'shortcodes-ultimate' ),
),
'link' => array(
'default' => '',
'name' => __( 'Link', 'shortcodes-ultimate' ),
'desc' => __( 'You can make this QR code clickable. Enter here the URL', 'shortcodes-ultimate' ),
),
'target' => array(
'type' => 'select',
'values' => array(
'self' => __( 'Open in same tab', 'shortcodes-ultimate' ),
'blank' => __( 'Open in new tab', 'shortcodes-ultimate' ),
),
'default' => 'blank',
'name' => __( 'Link target', 'shortcodes-ultimate' ),
'desc' => __( 'Select link target', 'shortcodes-ultimate' ),
),
'color' => array(
'type' => 'color',
'default' => '#000000',
'name' => __( 'Primary color', 'shortcodes-ultimate' ),
'desc' => __( 'Pick a primary color', 'shortcodes-ultimate' ),
),
'background' => array(
'type' => 'color',
'default' => '#ffffff',
'name' => __( 'Background color', 'shortcodes-ultimate' ),
'desc' => __( 'Pick a background color', 'shortcodes-ultimate' ),
),
'class' => array(
'type' => 'extra_css_class',
'name' => __( 'Extra CSS class', 'shortcodes-ultimate' ),
'desc' => __( 'Additional CSS class name(s) separated by space(s)', 'shortcodes-ultimate' ),
'default' => '',
),
),
'desc' => __( 'Advanced QR code generator', 'shortcodes-ultimate' ),
'icon' => 'qrcode',
)
);
function su_shortcode_qrcode( $atts = null, $content = null ) {
$atts = shortcode_atts(
array(
'data' => '',
'title' => '',
'size' => 200,
'margin' => 0,
'align' => 'none',
'link' => '',
'target' => 'blank',
'color' => '#000000',
'background' => '#ffffff',
'class' => '',
),
$atts,
'qrcode'
);
// Check the data
if ( ! $atts['data'] ) {
return su_error_message( 'QR code', __( 'please specify the data', 'shortcodes-ultimate' ) );
}
// Prepare link
$href = ( $atts['link'] ) ? ' href="' . $atts['link'] . '"' : '';
// Prepare clickable class
if ( $atts['link'] ) {
$atts['class'] .= ' su-qrcode-clickable';
}
// Prepare title
$atts['title'] = esc_attr( $atts['title'] );
// Query assets
su_query_asset( 'css', 'su-shortcodes' );
$url = add_query_arg(
array(
'data' => rawurlencode( $atts['data'] ),
'size' => sprintf( '%1$sx%1$s', intval( $atts['size'] ) ),
'format' => 'png',
'margin' => intval( $atts['margin'] ),
'color' => ltrim( $atts['color'], '#' ),
'bgcolor' => ltrim( $atts['background'], '#' ),
),
'https://api.qrserver.com/v1/create-qr-code/'
);
// Return result
return '<span class="su-qrcode su-qrcode-align-' . $atts['align'] . su_get_css_class( $atts ) . '"><a' . $href . ' target="_' . $atts['target'] . '" title="' . $atts['title'] . '"><img src="' . esc_url( $url ) . '" alt="' . $atts['title'] . '" /></a></span>';
}