| 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' => 'note',
'callback' => 'su_shortcode_note',
'image' => su_get_plugin_url() . 'admin/images/shortcodes/note.svg',
'name' => __( 'Note', 'shortcodes-ultimate' ),
'type' => 'wrap',
'group' => 'box',
'atts' => array(
'note_color' => array(
'type' => 'color',
'values' => array(),
'default' => '#FFFF66',
'name' => __( 'Background', 'shortcodes-ultimate' ),
'desc' => __( 'Note background color', 'shortcodes-ultimate' ),
),
'text_color' => array(
'type' => 'color',
'values' => array(),
'default' => '#333333',
'name' => __( 'Text color', 'shortcodes-ultimate' ),
'desc' => __( 'Note text color', 'shortcodes-ultimate' ),
),
'radius' => array(
'type' => 'slider',
'min' => 0,
'max' => 20,
'step' => 1,
'default' => 3,
'name' => __( 'Radius', 'shortcodes-ultimate' ),
'desc' => __( 'Note corners radius', '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' => '',
),
),
'content' => __( 'Note text', 'shortcodes-ultimate' ),
'desc' => __( 'Colored box', 'shortcodes-ultimate' ),
'icon' => 'list-alt',
)
);
function su_shortcode_note( $atts = null, $content = null ) {
$atts = shortcode_atts(
array(
'note_color' => '#FFFF66',
'text_color' => '#333333',
'background' => null, // 3.x
'color' => null, // 3.x
'radius' => '3',
'class' => '',
),
$atts,
'note'
);
if ( null !== $atts['color'] ) {
$atts['note_color'] = $atts['color'];
}
if ( null !== $atts['background'] ) {
$atts['note_color'] = $atts['background'];
}
// Prepare border-radius
$radius = '0' !== $atts['radius']
? 'border-radius:' . $atts['radius'] . 'px;-moz-border-radius:' . $atts['radius'] . 'px;-webkit-border-radius:' . $atts['radius'] . 'px;'
: '';
su_query_asset( 'css', 'su-shortcodes' );
return '<div class="su-note' . su_get_css_class( $atts ) . '" style="border-color:' . su_adjust_brightness( $atts['note_color'], -10 ) . ';' . $radius . '"><div class="su-note-inner su-u-clearfix su-u-trim" style="background-color:' . $atts['note_color'] . ';border-color:' . su_adjust_brightness( $atts['note_color'], 80 ) . ';color:' . $atts['text_color'] . ';' . $radius . '">' . su_do_nested_shortcodes( $content, 'note' ) . '</div></div>';
}