HEX
Server: Apache
System: Linux webm005.cluster121.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: adventp (418412)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/a/d/v/adventp/www/wp-content/plugins/ut-shortcodes/shortcodes/button.php
<?php

if ( ! defined( 'ABSPATH' ) ) exit;

if( !class_exists( 'UT_Button' ) ) {
	
    class UT_Button {
        
        function __construct() {
			
            add_action( 'vc_before_init', array( $this, 'ut_map_shortcode' ) );
            add_shortcode( 'ut_button', array( $this, 'ut_create_shortcode' ) );	
            
		}
        
        function ut_map_shortcode() {

            vc_map(
                array(
                    'name'            => esc_html__( 'Button (old)', 'ut_shortcodes' ),
                    'base'            => 'ut_button',
                    'deprecated'      => true,
                    //'icon'            => 'fa fa-external-link ut-vc-module-icon',
                    'icon'            => UT_SHORTCODES_URL . '/admin/img/vc_icons/button.png',
                    'class'           => 'ut-vc-icon-module ut-information-module',
                    'content_element' => true,
                    'params' => array(
                        array(
                            'type'        => 'dropdown',
                            'heading'     => esc_html__( 'Button Size', 'ut_shortcodes' ),
                            'param_name'  => 'size',
                            'group'       => 'General',
                            'value'       => array(
                                esc_html__( 'Small', 'ut_shortcodes' )  => 'small',
                                esc_html__( 'Medium', 'ut_shortcodes' ) => 'medium',
                                esc_html__( 'Large', 'ut_shortcodes' )  => 'large',
                            ),
                        ),
                        array(
                            'type'        => 'dropdown',
                            'class'       => '',
                            'heading'     => esc_html__( 'Button Skin', 'ut_shortcodes' ),
                            'param_name'  => 'color',
                            'group'       => 'General',
                            'value'       => array(
                                esc_html__( 'Red', 'ut_shortcodes' )          => 'red',
                                esc_html__( 'Turquoise', 'ut_shortcodes' )    => 'turquoise',
                                esc_html__( 'Green', 'ut_shortcodes' )        => 'green',
                                esc_html__( 'Blue', 'ut_shortcodes' )         => 'blue',
                                esc_html__( 'Mid Blue', 'ut_shortcodes' )     => 'mid-blue',
                                esc_html__( 'Yellow', 'ut_shortcodes' )       => 'yellow',
                                esc_html__( 'Purple', 'ut_shortcodes' )       => 'purple',
                                esc_html__( 'Grey', 'ut_shortcodes' )         => 'grey',
                                esc_html__( 'Orange', 'ut_shortcodes' )       => 'orange',
                                esc_html__( 'Theme Button', 'ut_shortcodes' ) => 'theme-btn',
                                esc_html__( 'Dark', 'ut_shortcodes' )         => 'dark'
                            ),
                        ),
                        array(
                            'type'        => 'dropdown',
                            'heading'     => esc_html__( 'Button Shape', 'ut_shortcodes' ),
                            'param_name'  => 'shape',
                            'group'       => 'General',
                            'value'       => array(
                                esc_html__( 'Normal', 'ut_shortcodes' ) => 'normal',
                                esc_html__( 'Round', 'ut_shortcodes' )  => 'round',
                            ),
                        ),
                        array(
                            'type'        => 'textfield',
                            'heading'     => esc_html__( 'Button Link', 'ut_shortcodes' ),
                            'param_name'  => 'link',
                            'group'       => 'General'
                        ),
                        array(
                            'type'        => 'dropdown',
                            'heading'     => esc_html__( 'Button Link Target', 'ut_shortcodes' ),
                            'param_name'  => 'target',
                            'group'       => 'General',
                            'value'       => array(
                                esc_html__( 'blank', 'ut_shortcodes' ) => '_blank',
                                esc_html__( 'self', 'ut_shortcodes' ) => '_self',
                            ),
                        ),
                        array(
                            'type'        => 'textfield',
                            'heading'     => __( 'Button Text', 'ut_shortcodes' ),
                            'param_name'  => 'content',
                            'group'       => 'General'
                        ),
                        array(
                            'type'        => 'textfield',
                            'heading'     => esc_html__( 'Button Title', 'ut_shortcodes' ),
                            'description' => esc_html__( '', 'ut_shortcodes' ),
                            'param_name'  => 'title',
                            'group'       => 'General'
                        ),
                        array(
                            'type'        => 'textfield',
                            'class'       => '',
                            'heading'     => esc_html__( 'Class', 'ut_shortcodes' ),
                            'description' => esc_html__( '( optional )', 'ut_shortcodes' ),
                            'param_name'  => 'class',
                            'group'       => 'General'
                        ),

                    )

                )

            ); /* end mapping */
                

        
        }
        
        function ut_create_shortcode( $atts, $content = NULL ) {
            
            extract( shortcode_atts( array (
                'link'      =>  '#',
                'color'     =>  '',
                'class'     =>  '',
                'size'      =>  'small',
                'target'    =>  '_self',
                'title'     =>  '',
                'shape'     =>  ''
            ), $atts ) ); 
            
            /* start output */
            $output = '';
        
            $output .= '<a title="' . esc_attr( $title ) . '" target="' . $target . '" class="ut-btn ' . $class . ' ' . $color . ' ' . $size . ' ' . $shape . '" href="' . esc_url( $link ) . '">';
                $output .= $content;
            $output .= '</a>';
                
            return $output;
        
        }
            
    }

}

new UT_Button;