
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/**
 * Register new style
 *
 * @return array
 */			 
	 
function go_pricing_register_style_yet( $styles ) {

	$styles[] = array ( 
		'name' => __( 'Yet', 'go_pricing_yet_textdomain' ),
		'id' => 'yet',
		'class' => 'gw-go-yet-style'
	);
	
	return $styles;

}

add_filter( 'go_pricing_styles', 'go_pricing_register_style_yet' );	

	
/**
 * Register new style type
 *
 * @return array
 */		

function go_pricing_register_style_type_yet( $types ) {

	$plugin = GW_GoPricing_Yet::instance();

	$types['yet'] = array(
		array(
			'name' => sprintf( __( '%1$s 1 (%2$s)', 'go_pricing_yet_textdomain' ),  __( 'Style', 'go_pricing_yet_textdomain' ),  __( 'pricing header', 'go_pricing_yet_textdomain' ) ),
			'value' => 'yet', 
			'data' =>  $plugin['plugin_url'] . 'assets/admin/images/yet_thumbnail.png',
			'type' => 'yet'
		)
	);

	return $types;

}

add_filter( 'go_pricing_style_types', 'go_pricing_register_style_type_yet' );


/**
 * Global style definition - Yet Skin
 *
 * @return array
 */


function go_pricing_global_table_style_yet( $table_data ) {
	
?>
<div class="gwa-table-separator"></div>
<table class="gwa-table">
	<tr>
		<th><label><?php _e( 'Enable Box Shadow?', 'go_pricing_yet_textdomain' ); ?></label></th>
		<td><p><label><span class="gwa-checkbox<?php echo !empty( $table_data['col-box-shadow'] ) || empty( $table_data ) ? ' gwa-checked' : ''; ?>" tabindex="0"><span></span><input type="checkbox" name="col-box-shadow" tabindex="-1" value="1" <?php echo !empty( $table_data['col-box-shadow'] ) || empty( $table_data ) ? ' checked="checked"' : ''; ?>></span></label></p></td>
		<td class="gwa-abox-info"><p class="gwa-info"><i class="fa fa-info-circle"></i><?php _e( 'Whether to enable or disable shadow of the columns on hover/highlighted state.', 'go_pricing_yet_textdomain' ); ?></p></td>
	</tr>
	<tr>
		<th><label><?php _e( 'Inner Border Width', 'go_pricing_yet_textdomain' ); ?> <span class="gwa-info">(px)</span></label></th>
		<td><input type="text" name="col-inner-border-width" value="<?php echo esc_attr( isset( $table_data['col-inner-border-width'] ) ? (int)$table_data['col-inner-border-width'] : 0 ); ?>"></td>
		<td class="gwa-abox-info"><p class="gwa-info"><i class="fa fa-info-circle"></i><?php _e( 'Width of the tooltip in pixels.', 'go_pricing_yet_textdomain' ); ?></p></td>
	</tr>        						
</table>
<?php

}

add_action( 'go_pricing_admin_global_style_opts_yet', 'go_pricing_global_table_style_yet' );