OwlCyberSecurity - MANAGER
Edit File: VC_Message-box.php
<?php /** * * Message box VC element by INSIGNIA * */ add_action( 'vc_before_init', 'VC_ins_message_box' ); function VC_ins_message_box() { vc_map( array( "name" => esc_html__( "Message Box", "emerson" ), "base" => "message_box", "class" => "font-awesome", "icon" => "fa fa-exclamation-circle", "category" => __( "Insignia", "emerson"), "params" => array( array( "type" => "dropdown", "class" => "hidden-label", "value" => array( esc_html__( "Success", "emerson" ) => 'alert-success', esc_html__( "Info", "emerson" ) => 'alert-info', esc_html__( "Warning", "emerson" ) => 'alert-warning', esc_html__( "Danger", "emerson" ) => 'alert-danger' ), "heading" => esc_html__( "Message Type", "emerson" ), "param_name" => "message_type" ), array( "type" => "textfield", "heading" => esc_html__( "Box Title", "emerson" ), "param_name" => "title", "description" => esc_html__( "Your Message Box title", "emerson" ), "value" => "Success!", "admin_label" => true ), array( "type" => "textfield", "heading" => esc_html__( "Box Message", "emerson" ), "param_name" => "message", "description" => esc_html__( "Your Message Box Message Text", "emerson" ), "value" => "This alert box indicates a successful or positive action.", "admin_label" => true ), array( "type" => "dropdown", "class" => "hidden-label", "value" => array( esc_html__( "Dismissible", "emerson" ) => 'alert-dismissible', esc_html__( "Not Dismissible", "emerson" ) => '' ), "heading" => esc_html__( "Dismissible?", "emerson" ), "description" => esc_html__( 'To close the alert message Box.', "emerson" ), "param_name" => "dismissible" ), array( "type" => "dropdown", "heading" => esc_html__( "Background Color", "emerson" ), "param_name" => "bg", "value" => array( esc_html__( "Default", "emerson" ) => "", esc_html__( "White", "emerson" ) => "white", esc_html__( "None", "emerson" ) => "transparent", ), "group" => esc_html__( "Design", "emerson" ), "description" => esc_html__( "Choose the Message box background color.", "emerson" ) ), array( "type" => "dropdown", "heading" => esc_html__( "Box Border", "engage" ), "param_name" => "border", "value" => array( esc_html__( "On", "engage" ) => "", esc_html__( "Off", "engage" ) => "border-none", ), "group" => esc_html__( "Design", "engage" ), "description" => esc_html__( "Choose the message box border.", "engage" ) ), array( "type" => "dropdown", "heading" => esc_html__( "Box Border Radius", "engage" ), "param_name" => "border_radius", "value" => array( esc_html__( "Theme Defaults", "engage" ) => "default", esc_html__( "None", "engage" ) => "border-radius-none", ), "group" => esc_html__( "Design", "engage" ) ), ) ) ); } function insignia_message_box( $atts, $content ) { $icon_type = 'fontawesome'; $defaultIconClass = 'fa fa-info-circle'; extract( shortcode_atts( array( "message_type" => 'alert-success', "dismissible" => 'alert-dismissible', "title" => esc_html__( 'Success!', 'citta'), "message" => esc_html__( 'This alert box indicates a successful or positive action.', 'citta'), "border_radius" => 'default', "bg" => 'gray', "border" => 'border-all', ), $atts ) ); $css_classes = array(); if ( $border_radius && $border_radius != 'default' ) { $css_classes[] = 'border-radius-none'; } $css_classes[] = 'bg-' . $bg; $css_classes[] = $border; $css_classes[] = $dismissible; // Add icon $uniqid = uniqid('ins-message-'); // Output $output = '<div id="'.$uniqid.'" class="alert '. $message_type .' ' . implode( ' ', $css_classes ) . '">'; if ( $dismissible == 'alert-dismissible' ) { $output .= '<a href="#" class="close" data-dismiss="alert" aria-label="close" title="close">'; $output .= 'x'; $output .= '</a>'; } $output .= '<strong>'; $output .= $title; $output .= '</strong>'; $output .= ' '; $output .= $message; $output .= '</div>'; return $output; } remove_shortcode( 'message_box' ); add_shortcode( 'message_box', 'insignia_message_box' );