Example #1
0
function maxbuttons_button_shortcode($atts)
{
    extract(shortcode_atts(array('id' => '', 'name' => '', 'text' => '', 'url' => '', 'window' => '', 'nofollow' => '', 'externalcss' => '', 'externalcsspreview' => '', 'ignorecontainer' => '', 'exclude' => ''), $atts));
    $button_name = "{$name}";
    $button_id = "{$id}";
    if ($button_id != '' || $button_name != '') {
        if ($button_name != '') {
            $button = maxbuttons_get_button($button_name);
        } else {
            $button = maxbuttons_get_button($button_id);
        }
        if (isset($button)) {
            // If we're not in the admin and the button is in the trash, just return nothing
            if (!is_admin() && $button->status == 'trash') {
                return '';
            }
            // Check to handle excludes
            if ("{$exclude}" != '') {
                global $post;
                // Don't render the button if excluded from the current post/page
                $exclude = explode(',', "{$exclude}");
                if (in_array($post->ID, $exclude)) {
                    return '';
                }
            }
            if ($button->gradient_stop != '') {
                $gradient_stop = strlen($button->gradient_stop) == 1 ? '0' . $button->gradient_stop : $button->gradient_stop;
            } else {
                $gradient_stop = '45';
                // Default
            }
            $external_css = false;
            if ("{$externalcss}" != '') {
                if ("{$externalcss}" == 'true') {
                    $external_css = true;
                }
            } else {
                if ($button->external_css == 'on') {
                    $external_css = true;
                }
            }
            // Check to exit early with external css preview
            $external_css_preview = false;
            if ("{$externalcsspreview}" != '') {
                if ("{$externalcsspreview}" == 'true') {
                    $external_css_preview = true;
                }
            }
            // Check to ignore container
            $ignore_container = false;
            if ("{$ignorecontainer}" != '') {
                if ("{$ignorecontainer}" == 'true') {
                    $ignore_container = true;
                }
            }
            // Check to set !important
            $important = '';
            if ($button->important_css == 'on') {
                $important = ' !important';
            }
            // Initialize the css
            $css = '';
            // The container style
            if ($button->container_enabled == 'on') {
                $css .= 'div.maxbutton-' . $button->id . '-container { ';
                if ($button->container_alignment != '') {
                    $css .= $button->container_alignment . $important . '; ';
                }
                if ($button->container_width != '') {
                    $css .= 'width: ' . $button->container_width . $important . '; ';
                }
                if ($button->container_margin_top != '') {
                    $css .= 'margin-top: ' . $button->container_margin_top . $important . '; ';
                }
                if ($button->container_margin_right != '') {
                    $css .= 'margin-right: ' . $button->container_margin_right . $important . '; ';
                }
                if ($button->container_margin_bottom != '') {
                    $css .= 'margin-bottom: ' . $button->container_margin_bottom . $important . '; ';
                }
                if ($button->container_margin_left != '') {
                    $css .= 'margin-left: ' . $button->container_margin_left . $important . '; ';
                }
                $css .= '} ';
            }
            $button_url = "{$url}" != '' ? "{$url}" : $button->url;
            // Gradients
            $gradient_start_color = maxbuttons_hex2rgba($button->gradient_start_color, $button->gradient_start_opacity);
            $gradient_end_color = maxbuttons_hex2rgba($button->gradient_end_color, $button->gradient_end_opacity);
            // The button style
            $css .= 'a.maxbutton-' . $button->id . ' { ';
            $css .= 'text-decoration: none' . $important . '; ';
            $css .= 'color: ' . $button->text_color . $important . '; ';
            $css .= 'font-family: ' . $button->text_font_family . $important . '; ';
            $css .= 'font-size: ' . $button->text_font_size . $important . '; ';
            $css .= 'font-style: ' . $button->text_font_style . $important . '; ';
            $css .= 'font-weight: ' . $button->text_font_weight . $important . '; ';
            $css .= 'padding-top: ' . $button->text_padding_top . $important . '; ';
            $css .= 'padding-right: ' . $button->text_padding_right . $important . '; ';
            $css .= 'padding-bottom: ' . $button->text_padding_bottom . $important . '; ';
            $css .= 'padding-left: ' . $button->text_padding_left . $important . '; ';
            $css .= 'background-color: ' . $button->gradient_start_color . $important . '; ';
            $css .= 'background: linear-gradient(' . $gradient_start_color . ' ' . $gradient_stop . '%, ' . $gradient_end_color . '); ';
            $css .= 'background: -moz-linear-gradient(' . $gradient_start_color . ' ' . $gradient_stop . '%, ' . $gradient_end_color . '); ';
            $css .= 'background: -o-linear-gradient(' . $gradient_start_color . ' ' . $gradient_stop . '%, ' . $gradient_end_color . '); ';
            $css .= 'background: -webkit-gradient(linear, left top, left bottom, color-stop(.' . $gradient_stop . ', ' . $gradient_start_color . '), color-stop(1, ' . $gradient_end_color . ')); ';
            $css .= 'border-style: ' . $button->border_style . $important . '; ';
            $css .= 'border-width: ' . $button->border_width . $important . '; ';
            $css .= 'border-color: ' . $button->border_color . $important . '; ';
            $css .= 'box-sizing: border-box' . $important . '; ';
            $css .= 'white-space: nowrap;';
            if (maxbuttons_border_radius_values_are_equal($button->border_radius_top_left, $button->border_radius_top_right, $button->border_radius_bottom_left, $button->border_radius_bottom_right)) {
                $css .= 'border-radius: ' . $button->border_radius_top_left . $important . '; ';
                $css .= '-moz-border-radius: ' . $button->border_radius_top_left . $important . '; ';
                $css .= '-webkit-border-radius: ' . $button->border_radius_top_left . $important . '; ';
            } else {
                $css .= 'border-top-left-radius: ' . $button->border_radius_top_left . $important . '; ';
                $css .= 'border-top-right-radius: ' . $button->border_radius_top_right . $important . '; ';
                $css .= 'border-bottom-left-radius: ' . $button->border_radius_bottom_left . $important . '; ';
                $css .= 'border-bottom-right-radius: ' . $button->border_radius_bottom_right . $important . '; ';
                $css .= '-moz-border-radius-topleft: ' . $button->border_radius_top_left . $important . '; ';
                $css .= '-moz-border-radius-topright: ' . $button->border_radius_top_right . $important . '; ';
                $css .= '-moz-border-radius-bottomleft: ' . $button->border_radius_bottom_left . $important . '; ';
                $css .= '-moz-border-radius-bottomright: ' . $button->border_radius_bottom_right . $important . '; ';
                $css .= '-webkit-border-top-left-radius: ' . $button->border_radius_top_left . $important . '; ';
                $css .= '-webkit-border-top-right-radius: ' . $button->border_radius_top_right . $important . '; ';
                $css .= '-webkit-border-bottom-left-radius: ' . $button->border_radius_bottom_left . $important . '; ';
                $css .= '-webkit-border-bottom-right-radius: ' . $button->border_radius_bottom_right . $important . '; ';
            }
            $css .= 'text-shadow: ' . $button->text_shadow_offset_left . ' ' . $button->text_shadow_offset_top . ' ' . $button->text_shadow_width . ' ' . $button->text_shadow_color . $important . '; ';
            $css .= 'box-shadow: ' . $button->box_shadow_offset_left . ' ' . $button->box_shadow_offset_top . ' ' . $button->box_shadow_width . ' ' . $button->box_shadow_color . $important . '; ';
            // PIE
            $css .= '-pie-background: linear-gradient(' . $gradient_start_color . ' ' . $gradient_stop . '%, ' . $gradient_end_color . '); ';
            $css .= 'position: relative' . $important . '; ';
            $css .= 'behavior: url("' . MAXBUTTONS_PLUGIN_URL . '/pie/PIE.htc"); ';
            $css .= '} ';
            // The button style - visited
            $css .= 'a.maxbutton-' . $button->id . ':visited { ';
            $css .= 'text-decoration: none' . $important . '; ';
            $css .= 'color: ' . $button->text_color . $important . '; ';
            $css .= '} ';
            if ($button_url != '') {
                // Hover gradients
                $gradient_start_color_hover = maxbuttons_hex2rgba($button->gradient_start_color_hover, $button->gradient_start_opacity_hover);
                $gradient_end_color_hover = maxbuttons_hex2rgba($button->gradient_end_color_hover, $button->gradient_end_opacity_hover);
                // The button style - hover
                $css .= 'a.maxbutton-' . $button->id . ':hover { ';
                $css .= 'text-decoration: none' . $important . '; ';
                $css .= 'color: ' . $button->text_color_hover . $important . '; ';
                $css .= 'background-color: ' . $button->gradient_start_color_hover . $important . '; ';
                $css .= 'background: linear-gradient(' . $gradient_start_color_hover . ' ' . $gradient_stop . '%, ' . $gradient_end_color_hover . '); ';
                $css .= 'background: -moz-linear-gradient(' . $gradient_start_color_hover . ' ' . $gradient_stop . '%, ' . $gradient_end_color_hover . '); ';
                $css .= 'background: -o-linear-gradient(' . $gradient_start_color_hover . ' ' . $gradient_stop . '%, ' . $gradient_end_color_hover . '); ';
                $css .= 'background: -webkit-gradient(linear, left top, left bottom, color-stop(.' . $gradient_stop . ', ' . $gradient_start_color_hover . '), color-stop(1, ' . $gradient_end_color_hover . ')); ';
                $css .= 'border-color: ' . $button->border_color_hover . $important . '; ';
                $css .= 'text-shadow: ' . $button->text_shadow_offset_left . ' ' . $button->text_shadow_offset_top . ' ' . $button->text_shadow_width . ' ' . $button->text_shadow_color_hover . $important . '; ';
                $css .= 'box-shadow: ' . $button->box_shadow_offset_left . ' ' . $button->box_shadow_offset_top . ' ' . $button->box_shadow_width . ' ' . $button->box_shadow_color_hover . $important . '; ';
                // PIE
                $css .= '-pie-background: linear-gradient(' . $gradient_start_color_hover . ' ' . $gradient_stop . '%, ' . $gradient_end_color_hover . '); ';
                $css .= 'position: relative' . $important . '; ';
                $css .= 'behavior: url("' . MAXBUTTONS_PLUGIN_URL . '/pie/PIE.htc"); ';
                $css .= '}';
            }
            if ($external_css_preview) {
                return $css;
            }
            $button_text = "{$text}" != '' ? "{$text}" : $button->text;
            $button_window = '';
            $button_nofollow = '';
            // Check to open the link in a new window
            if ("{$window}" != '') {
                if ("{$window}" == 'new') {
                    $button_window = 'target="_blank"';
                }
            } else {
                if ($button->new_window == 'on') {
                    $button_window = 'target="_blank"';
                }
            }
            // Check to add rel="nofollow" to the link
            if ("{$nofollow}" != '') {
                if ("{$nofollow}" == 'true') {
                    $button_nofollow = 'rel="nofollow"';
                }
            } else {
                if ($button->nofollow == 'on') {
                    $button_nofollow = 'rel="nofollow"';
                }
            }
            // Initialize the output
            $output = '';
            // Check to add the css
            if (!$external_css) {
                //$output .= $css;
                global $maxbuttons_css;
                $maxbuttons_css[$button->id] = $css;
            }
            if (!$ignore_container) {
                // Check to add the center div wrapper
                if ($button->container_center_div_wrap_enabled == 'on') {
                    $output .= '<div align="center">';
                }
                // Check to add the container
                if ($button->container_enabled == 'on') {
                    $output .= '<div class="maxbutton-' . $button->id . '-container">';
                }
            }
            // If no button url then don't output the href
            if ($button_url == '') {
                $output .= '<a class="maxbutton-' . $button->id . '">' . do_shortcode($button_text) . '</a>';
            } else {
                $output .= '<a class="maxbutton-' . $button->id . '" href="' . do_shortcode($button_url) . '" ' . $button_window . ' ' . $button_nofollow . '>' . do_shortcode($button_text) . '</a>';
            }
            if (!$ignore_container) {
                // Check to close the container
                if ($button->container_enabled == 'on') {
                    $output .= '</div>';
                    // Might need to clear the float
                    if ($button->container_alignment == 'float: right' || $button->container_alignment == 'float: left') {
                        $output .= '<div style="clear: both;"></div>';
                    }
                }
                // Check to close the center div wrapper
                if ($button->container_center_div_wrap_enabled == 'on') {
                    $output .= '</div>';
                }
            }
            return $output;
        }
    }
}
<?php

include_once 'arrays.php';
include_once 'constants.php';
if (isset($_GET['id']) && $_GET['id'] != '' && intval($_GET['id']) != 0) {
    $button = maxbuttons_get_button(intval($_GET['id']));
    $button_id = intval($_GET["id"]);
} elseif (isset($_GET['id'])) {
    die;
} else {
}
$maxbutton_name_value = isset($button) ? $button->name : '';
$maxbutton_description_value = isset($button) ? $button->description : '';
$maxbutton_url_value = isset($button) ? $button->url : '';
$maxbutton_text_value = isset($button) ? $button->text : '';
$maxbutton_new_window_value = isset($button) ? $button->new_window : '';
$maxbutton_nofollow_value = isset($button) ? $button->nofollow : '';
$maxbutton_text_font_family_value = isset($button) ? $button->text_font_family : '';
$maxbutton_text_font_family_display = $maxbutton_text_font_family_value != '' ? $maxbutton_text_font_family_value : $maxbutton_text_font_family_default;
$maxbutton_text_font_size_value = isset($button) ? $button->text_font_size : '';
$maxbutton_text_font_size_display = $maxbutton_text_font_size_value != '' ? $maxbutton_text_font_size_value : $maxbutton_text_font_size_default;
$maxbutton_text_font_style_value = isset($button) ? $button->text_font_style : '';
$maxbutton_text_font_style_display = $maxbutton_text_font_style_value != '' ? $maxbutton_text_font_style_value : $maxbutton_text_font_style_default;
$maxbutton_text_font_weight_value = isset($button) ? $button->text_font_weight : '';
$maxbutton_text_font_weight_display = $maxbutton_text_font_weight_value != '' ? $maxbutton_text_font_weight_value : $maxbutton_text_font_weight_default;
$maxbutton_text_color_value = isset($button) ? $button->text_color : '';
$maxbutton_text_color_display = $maxbutton_text_color_value != '' ? $maxbutton_text_color_value : $maxbutton_text_color_default;
$maxbutton_text_color_hover_value = isset($button) ? $button->text_color_hover : '';
$maxbutton_text_color_hover_display = $maxbutton_text_color_hover_value != '' ? $maxbutton_text_color_hover_value : $maxbutton_text_color_hover_default;
$maxbutton_text_shadow_color_value = isset($button) ? $button->text_shadow_color : '';
$maxbutton_text_shadow_color_display = $maxbutton_text_shadow_color_value != '' ? $maxbutton_text_shadow_color_value : $maxbutton_text_shadow_color_default;
Example #3
0
<?php

if (isset($_GET['id']) && $_GET['id'] != '') {
    $button = maxbuttons_get_button($_GET['id']);
    $data = array('name' => $button->name, 'description' => $button->description, 'url' => $button->url, 'new_window' => $button->new_window, 'nofollow' => $button->nofollow, 'text' => $button->text, 'text_font_family' => $button->text_font_family, 'text_font_size' => $button->text_font_size, 'text_font_style' => $button->text_font_style, 'text_font_weight' => $button->text_font_weight, 'text_color' => $button->text_color, 'text_color_hover' => $button->text_color_hover, 'text_shadow_offset_left' => $button->text_shadow_offset_left, 'text_shadow_offset_top' => $button->text_shadow_offset_top, 'text_shadow_width' => $button->text_shadow_width, 'text_shadow_color' => $button->text_shadow_color, 'text_shadow_color_hover' => $button->text_shadow_color_hover, 'text_padding_top' => $button->text_padding_top, 'text_padding_bottom' => $button->text_padding_bottom, 'text_padding_left' => $button->text_padding_left, 'text_padding_right' => $button->text_padding_right, 'border_radius_top_left' => $button->border_radius_top_left, 'border_radius_top_right' => $button->border_radius_top_right, 'border_radius_bottom_left' => $button->border_radius_bottom_left, 'border_radius_bottom_right' => $button->border_radius_bottom_right, 'border_style' => $button->border_style, 'border_width' => $button->border_width, 'border_color' => $button->border_color, 'border_color_hover' => $button->border_color_hover, 'box_shadow_offset_left' => $button->box_shadow_offset_left, 'box_shadow_offset_top' => $button->box_shadow_offset_top, 'box_shadow_width' => $button->box_shadow_width, 'box_shadow_color' => $button->box_shadow_color, 'box_shadow_color_hover' => $button->box_shadow_color_hover, 'gradient_start_color' => $button->gradient_start_color, 'gradient_start_color_hover' => $button->gradient_start_color_hover, 'gradient_end_color' => $button->gradient_end_color, 'gradient_end_color_hover' => $button->gradient_end_color_hover, 'gradient_start_opacity' => $button->gradient_start_opacity, 'gradient_end_opacity' => $button->gradient_end_opacity, 'gradient_start_opacity_hover' => $button->gradient_start_opacity_hover, 'gradient_end_opacity_hover' => $button->gradient_end_opacity_hover, 'gradient_stop' => $button->gradient_stop, 'container_enabled' => $button->container_enabled, 'container_width' => $button->container_width, 'container_margin_top' => $button->container_margin_top, 'container_margin_right' => $button->container_margin_right, 'container_margin_bottom' => $button->container_margin_bottom, 'container_margin_left' => $button->container_margin_left, 'container_alignment' => $button->container_alignment, 'container_center_div_wrap_enabled' => $button->container_center_div_wrap_enabled, 'status' => $button->status);
    global $wpdb;
    $wpdb->insert(maxbuttons_get_buttons_table_name(), $data);
    $button_id = $wpdb->insert_id;
}
?>
<script type="text/javascript">
	<?php 
if (isset($_GET['id']) && $_GET['id'] != '') {
    ?>
		window.location = "<?php 
    admin_url();
    ?>
admin.php?page=maxbuttons-controller&action=button&id=<?php 
    echo $button_id;
    ?>
";
	<?php 
} else {
    ?>
		window.location = "<?php 
    admin_url();
    ?>
admin.php?page=maxbuttons-controller&action=list";
	<?php 
}
?>
Example #4
0
function maxbuttons_button_shortcode($atts)
{
    extract(shortcode_atts(array('id' => '', 'text' => '', 'url' => '', 'window' => '', 'nofollow' => ''), $atts));
    $button_id = "{$id}";
    if ($button_id != '') {
        $button = maxbuttons_get_button($button_id);
        if (isset($button)) {
            // If we're not in the admin and the button is in the trash, just return nothing
            if (!is_admin() && $button->status == 'trash') {
                return '';
            }
            if ($button->gradient_stop != '') {
                $gradient_stop = strlen($button->gradient_stop) == 1 ? '0' . $button->gradient_stop : $button->gradient_stop;
            } else {
                $gradient_stop = '45';
                // Default
            }
            // Begin style element
            $output = '<style type="text/css">';
            // The container style
            if ($button->container_enabled == 'on') {
                $output .= 'div#maxbutton-' . $button->id . '-container { ';
                if ($button->container_alignment != '') {
                    $output .= $button->container_alignment . '; ';
                }
                if ($button->container_width != '') {
                    $output .= 'width: ' . $button->container_width . '; ';
                }
                if ($button->container_margin_top != '') {
                    $output .= 'margin-top: ' . $button->container_margin_top . '; ';
                }
                if ($button->container_margin_right != '') {
                    $output .= 'margin-right: ' . $button->container_margin_right . '; ';
                }
                if ($button->container_margin_bottom != '') {
                    $output .= 'margin-bottom: ' . $button->container_margin_bottom . '; ';
                }
                if ($button->container_margin_left != '') {
                    $output .= 'margin-left: ' . $button->container_margin_left . '; ';
                }
                $output .= '} ';
            }
            // The button style
            $output .= 'a#maxbutton-' . $button->id . ' { ';
            $output .= 'text-decoration: none; ';
            $output .= 'color: ' . $button->text_color . '; ';
            $output .= 'font-family: ' . $button->text_font_family . '; ';
            $output .= 'font-size: ' . $button->text_font_size . '; ';
            $output .= 'font-style: ' . $button->text_font_style . '; ';
            $output .= 'font-weight: ' . $button->text_font_weight . '; ';
            $output .= 'padding-top: ' . $button->text_padding_top . '; ';
            $output .= 'padding-right: ' . $button->text_padding_right . '; ';
            $output .= 'padding-bottom: ' . $button->text_padding_bottom . '; ';
            $output .= 'padding-left: ' . $button->text_padding_left . '; ';
            $output .= 'background-color: ' . $button->gradient_start_color . '; ';
            $output .= 'background: linear-gradient(' . $button->gradient_start_color . ' ' . $gradient_stop . '%, ' . $button->gradient_end_color . '); ';
            $output .= 'background: -moz-linear-gradient(' . $button->gradient_start_color . ' ' . $gradient_stop . '%, ' . $button->gradient_end_color . '); ';
            $output .= 'background: -o-linear-gradient(' . $button->gradient_start_color . ' ' . $gradient_stop . '%, ' . $button->gradient_end_color . '); ';
            $output .= 'background: -webkit-gradient(linear, left top, left bottom, color-stop(.' . $gradient_stop . ', ' . $button->gradient_start_color . '), color-stop(1, ' . $button->gradient_end_color . ')); ';
            $output .= 'border-style: ' . $button->border_style . '; ';
            $output .= 'border-width: ' . $button->border_width . '; ';
            $output .= 'border-color: ' . $button->border_color . '; ';
            if (maxbuttons_border_radius_values_are_equal($button->border_radius_top_left, $button->border_radius_top_right, $button->border_radius_bottom_left, $button->border_radius_bottom_right)) {
                $output .= 'border-radius: ' . $button->border_radius_top_left . '; ';
                $output .= '-moz-border-radius: ' . $button->border_radius_top_left . '; ';
                $output .= '-webkit-border-radius: ' . $button->border_radius_top_left . '; ';
            } else {
                $output .= 'border-top-left-radius: ' . $button->border_radius_top_left . '; ';
                $output .= 'border-top-right-radius: ' . $button->border_radius_top_right . '; ';
                $output .= 'border-bottom-left-radius: ' . $button->border_radius_bottom_left . '; ';
                $output .= 'border-bottom-right-radius: ' . $button->border_radius_bottom_right . '; ';
                $output .= '-moz-border-radius-topleft: ' . $button->border_radius_top_left . '; ';
                $output .= '-moz-border-radius-topright: ' . $button->border_radius_top_right . '; ';
                $output .= '-moz-border-radius-bottomleft: ' . $button->border_radius_bottom_left . '; ';
                $output .= '-moz-border-radius-bottomright: ' . $button->border_radius_bottom_right . '; ';
                $output .= '-webkit-border-top-left-radius: ' . $button->border_radius_top_left . '; ';
                $output .= '-webkit-border-top-right-radius: ' . $button->border_radius_top_right . '; ';
                $output .= '-webkit-border-bottom-left-radius: ' . $button->border_radius_bottom_left . '; ';
                $output .= '-webkit-border-bottom-right-radius: ' . $button->border_radius_bottom_right . '; ';
            }
            $output .= 'text-shadow: ' . $button->text_shadow_offset_left . ' ' . $button->text_shadow_offset_top . ' ' . $button->text_shadow_width . ' ' . $button->text_shadow_color . '; ';
            $output .= 'box-shadow: ' . $button->box_shadow_offset_left . ' ' . $button->box_shadow_offset_top . ' ' . $button->box_shadow_width . ' ' . $button->box_shadow_color . '; ';
            // PIE
            $output .= '-pie-background: linear-gradient(' . $button->gradient_start_color . ' ' . $gradient_stop . '%, ' . $button->gradient_end_color . '); ';
            $output .= 'position: relative; ';
            $output .= 'behavior: url("' . MAXBUTTONS_PLUGIN_URL . '/pie/PIE.htc"); ';
            $output .= '} ';
            // The button style - visited
            $output .= 'a#maxbutton-' . $button->id . ':visited { ';
            $output .= 'text-decoration: none; ';
            $output .= 'color: ' . $button->text_color . '; ';
            $output .= '} ';
            // The button style - hover
            $output .= 'a#maxbutton-' . $button->id . ':hover { ';
            $output .= 'text-decoration: none; ';
            $output .= 'color: ' . $button->text_color_hover . '; ';
            $output .= 'background-color: ' . $button->gradient_start_color_hover . '; ';
            $output .= 'background: linear-gradient(' . $button->gradient_start_color_hover . ' ' . $gradient_stop . '%, ' . $button->gradient_end_color_hover . '); ';
            $output .= 'background: -moz-linear-gradient(' . $button->gradient_start_color_hover . ' ' . $gradient_stop . '%, ' . $button->gradient_end_color_hover . '); ';
            $output .= 'background: -o-linear-gradient(' . $button->gradient_start_color_hover . ' ' . $gradient_stop . '%, ' . $button->gradient_end_color_hover . '); ';
            $output .= 'background: -webkit-gradient(linear, left top, left bottom, color-stop(.' . $gradient_stop . ', ' . $button->gradient_start_color_hover . '), color-stop(1, ' . $button->gradient_end_color_hover . ')); ';
            $output .= 'border-color: ' . $button->border_color_hover . '; ';
            $output .= 'text-shadow: ' . $button->text_shadow_offset_left . ' ' . $button->text_shadow_offset_top . ' ' . $button->text_shadow_width . ' ' . $button->text_shadow_color_hover . '; ';
            $output .= 'box-shadow: ' . $button->box_shadow_offset_left . ' ' . $button->box_shadow_offset_top . ' ' . $button->box_shadow_width . ' ' . $button->box_shadow_color_hover . '; ';
            // PIE
            $output .= '-pie-background: linear-gradient(' . $button->gradient_start_color_hover . ' ' . $gradient_stop . '%, ' . $button->gradient_end_color_hover . '); ';
            $output .= 'position: relative; ';
            $output .= 'behavior: url("' . MAXBUTTONS_PLUGIN_URL . '/pie/PIE.htc"); ';
            $output .= '}';
            // End the style element
            $output .= '</style>';
            $button_text = "{$text}" != '' ? "{$text}" : $button->text;
            $button_url = "{$url}" != '' ? "{$url}" : $button->url;
            $button_window = '';
            $button_nofollow = '';
            // Check to open the link in a new window
            if ("{$window}" != '') {
                if ("{$window}" == 'new') {
                    $button_window = 'target="_blank"';
                }
            } else {
                if ($button->new_window == 'on') {
                    $button_window = 'target="_blank"';
                }
            }
            // Check to add rel="nofollow" to the link
            if ("{$nofollow}" != '') {
                if ("{$nofollow}" == 'true') {
                    $button_nofollow = 'rel="nofollow"';
                }
            } else {
                if ($button->nofollow == 'on') {
                    $button_nofollow = 'rel="nofollow"';
                }
            }
            // Check to add the center div wrapper
            if ($button->container_center_div_wrap_enabled == 'on') {
                $output .= '<div align="center">';
            }
            // Check to add the container
            if ($button->container_enabled == 'on') {
                $output .= '<div id="maxbutton-' . $button->id . '-container">';
            }
            $output .= '<a id="maxbutton-' . $button->id . '" href="' . $button_url . '" ' . $button_window . ' ' . $button_nofollow . '>' . $button_text . '</a>';
            // Check to close the container
            if ($button->container_enabled == 'on') {
                $output .= '</div>';
                // Might need to clear the float
                if ($button->container_alignment == 'float: right' || $button->container_alignment == 'float: left') {
                    $output .= '<div style="clear: both;"></div>';
                }
            }
            // Check to close the center div wrapper
            if ($button->container_center_div_wrap_enabled == 'on') {
                $output .= '</div>';
            }
            return $output;
        }
    }
}