2013-08-06 10:41:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* WooCommerce Meta Box Functions
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @category Core
|
|
|
|
* @package WooCommerce/Admin/Functions
|
|
|
|
* @version 2.1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output a text input box.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $field
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function woocommerce_wp_text_input( $field ) {
|
|
|
|
global $thepostid, $post, $woocommerce;
|
|
|
|
|
|
|
|
$thepostid = empty( $thepostid ) ? $post->ID : $thepostid;
|
|
|
|
$field['placeholder'] = isset( $field['placeholder'] ) ? $field['placeholder'] : '';
|
|
|
|
$field['class'] = isset( $field['class'] ) ? $field['class'] : 'short';
|
|
|
|
$field['wrapper_class'] = isset( $field['wrapper_class'] ) ? $field['wrapper_class'] : '';
|
|
|
|
$field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true );
|
|
|
|
$field['name'] = isset( $field['name'] ) ? $field['name'] : $field['id'];
|
|
|
|
$field['type'] = isset( $field['type'] ) ? $field['type'] : 'text';
|
|
|
|
|
|
|
|
// Custom attribute handling
|
|
|
|
$custom_attributes = array();
|
|
|
|
|
|
|
|
if ( ! empty( $field['custom_attributes'] ) && is_array( $field['custom_attributes'] ) )
|
|
|
|
foreach ( $field['custom_attributes'] as $attribute => $value )
|
|
|
|
$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $value ) . '"';
|
|
|
|
|
|
|
|
echo '<p class="form-field ' . esc_attr( $field['id'] ) . '_field ' . esc_attr( $field['wrapper_class'] ) . '"><label for="' . esc_attr( $field['id'] ) . '">' . wp_kses_post( $field['label'] ) . '</label><input type="' . esc_attr( $field['type'] ) . '" class="' . esc_attr( $field['class'] ) . '" name="' . esc_attr( $field['name'] ) . '" id="' . esc_attr( $field['id'] ) . '" value="' . esc_attr( $field['value'] ) . '" placeholder="' . esc_attr( $field['placeholder'] ) . '" ' . implode( ' ', $custom_attributes ) . ' /> ';
|
|
|
|
|
|
|
|
if ( ! empty( $field['description'] ) ) {
|
|
|
|
|
2013-09-03 15:22:59 +00:00
|
|
|
if ( isset( $field['desc_tip'] ) && false !== $field['desc_tip'] ) {
|
2013-08-06 10:41:20 +00:00
|
|
|
echo '<img class="help_tip" data-tip="' . esc_attr( $field['description'] ) . '" src="' . $woocommerce->plugin_url() . '/assets/images/help.png" height="16" width="16" />';
|
|
|
|
} else {
|
|
|
|
echo '<span class="description">' . wp_kses_post( $field['description'] ) . '</span>';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
echo '</p>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output a hidden input box.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $field
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function woocommerce_wp_hidden_input( $field ) {
|
|
|
|
global $thepostid, $post;
|
|
|
|
|
|
|
|
$thepostid = empty( $thepostid ) ? $post->ID : $thepostid;
|
|
|
|
$field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true );
|
|
|
|
$field['class'] = isset( $field['class'] ) ? $field['class'] : '';
|
|
|
|
|
|
|
|
echo '<input type="hidden" class="' . esc_attr( $field['class'] ) . '" name="' . esc_attr( $field['id'] ) . '" id="' . esc_attr( $field['id'] ) . '" value="' . esc_attr( $field['value'] ) . '" /> ';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output a textarea input box.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $field
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function woocommerce_wp_textarea_input( $field ) {
|
|
|
|
global $thepostid, $post, $woocommerce;
|
|
|
|
|
|
|
|
$thepostid = empty( $thepostid ) ? $post->ID : $thepostid;
|
|
|
|
$field['placeholder'] = isset( $field['placeholder'] ) ? $field['placeholder'] : '';
|
|
|
|
$field['class'] = isset( $field['class'] ) ? $field['class'] : 'short';
|
|
|
|
$field['wrapper_class'] = isset( $field['wrapper_class'] ) ? $field['wrapper_class'] : '';
|
|
|
|
$field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true );
|
|
|
|
|
|
|
|
echo '<p class="form-field ' . esc_attr( $field['id'] ) . '_field ' . esc_attr( $field['wrapper_class'] ) . '"><label for="' . esc_attr( $field['id'] ) . '">' . wp_kses_post( $field['label'] ) . '</label><textarea class="' . esc_attr( $field['class'] ) . '" name="' . esc_attr( $field['id'] ) . '" id="' . esc_attr( $field['id'] ) . '" placeholder="' . esc_attr( $field['placeholder'] ) . '" rows="2" cols="20">' . esc_textarea( $field['value'] ) . '</textarea> ';
|
|
|
|
|
|
|
|
if ( ! empty( $field['description'] ) ) {
|
|
|
|
|
2013-09-03 15:22:59 +00:00
|
|
|
if ( isset( $field['desc_tip'] ) && false !== $field['desc_tip'] ) {
|
2013-08-06 10:41:20 +00:00
|
|
|
echo '<img class="help_tip" data-tip="' . esc_attr( $field['description'] ) . '" src="' . $woocommerce->plugin_url() . '/assets/images/help.png" height="16" width="16" />';
|
|
|
|
} else {
|
|
|
|
echo '<span class="description">' . wp_kses_post( $field['description'] ) . '</span>';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
echo '</p>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output a checkbox input box.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $field
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function woocommerce_wp_checkbox( $field ) {
|
|
|
|
global $thepostid, $post;
|
|
|
|
|
|
|
|
$thepostid = empty( $thepostid ) ? $post->ID : $thepostid;
|
|
|
|
$field['class'] = isset( $field['class'] ) ? $field['class'] : 'checkbox';
|
|
|
|
$field['wrapper_class'] = isset( $field['wrapper_class'] ) ? $field['wrapper_class'] : '';
|
|
|
|
$field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true );
|
|
|
|
$field['cbvalue'] = isset( $field['cbvalue'] ) ? $field['cbvalue'] : 'yes';
|
|
|
|
|
|
|
|
echo '<p class="form-field ' . esc_attr( $field['id'] ) . '_field ' . esc_attr( $field['wrapper_class'] ) . '"><label for="' . esc_attr( $field['id'] ) . '">' . wp_kses_post( $field['label'] ) . '</label><input type="checkbox" class="' . esc_attr( $field['class'] ) . '" name="' . esc_attr( $field['id'] ) . '" id="' . esc_attr( $field['id'] ) . '" value="' . esc_attr( $field['cbvalue'] ) . '" ' . checked( $field['value'], $field['cbvalue'], false ) . ' /> ';
|
|
|
|
|
|
|
|
if ( ! empty( $field['description'] ) ) echo '<span class="description">' . wp_kses_post( $field['description'] ) . '</span>';
|
|
|
|
|
|
|
|
echo '</p>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output a select input box.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $field
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function woocommerce_wp_select( $field ) {
|
|
|
|
global $thepostid, $post, $woocommerce;
|
|
|
|
|
|
|
|
$thepostid = empty( $thepostid ) ? $post->ID : $thepostid;
|
|
|
|
$field['class'] = isset( $field['class'] ) ? $field['class'] : 'select short';
|
|
|
|
$field['wrapper_class'] = isset( $field['wrapper_class'] ) ? $field['wrapper_class'] : '';
|
|
|
|
$field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true );
|
|
|
|
|
|
|
|
echo '<p class="form-field ' . esc_attr( $field['id'] ) . '_field ' . esc_attr( $field['wrapper_class'] ) . '"><label for="' . esc_attr( $field['id'] ) . '">' . wp_kses_post( $field['label'] ) . '</label><select id="' . esc_attr( $field['id'] ) . '" name="' . esc_attr( $field['id'] ) . '" class="' . esc_attr( $field['class'] ) . '">';
|
|
|
|
|
|
|
|
foreach ( $field['options'] as $key => $value ) {
|
|
|
|
|
|
|
|
echo '<option value="' . esc_attr( $key ) . '" ' . selected( esc_attr( $field['value'] ), esc_attr( $key ), false ) . '>' . esc_html( $value ) . '</option>';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '</select> ';
|
|
|
|
|
|
|
|
if ( ! empty( $field['description'] ) ) {
|
|
|
|
|
2013-09-03 15:22:59 +00:00
|
|
|
if ( isset( $field['desc_tip'] ) && false !== $field['desc_tip'] ) {
|
2013-08-06 10:41:20 +00:00
|
|
|
echo '<img class="help_tip" data-tip="' . esc_attr( $field['description'] ) . '" src="' . $woocommerce->plugin_url() . '/assets/images/help.png" height="16" width="16" />';
|
|
|
|
} else {
|
|
|
|
echo '<span class="description">' . wp_kses_post( $field['description'] ) . '</span>';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
echo '</p>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output a radio input box.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param array $field
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function woocommerce_wp_radio( $field ) {
|
|
|
|
global $thepostid, $post, $woocommerce;
|
|
|
|
|
|
|
|
$thepostid = empty( $thepostid ) ? $post->ID : $thepostid;
|
|
|
|
$field['class'] = isset( $field['class'] ) ? $field['class'] : 'select short';
|
|
|
|
$field['wrapper_class'] = isset( $field['wrapper_class'] ) ? $field['wrapper_class'] : '';
|
|
|
|
$field['value'] = isset( $field['value'] ) ? $field['value'] : get_post_meta( $thepostid, $field['id'], true );
|
|
|
|
|
|
|
|
echo '<fieldset class="form-field ' . esc_attr( $field['id'] ) . '_field ' . esc_attr( $field['wrapper_class'] ) . '"><legend>' . wp_kses_post( $field['label'] ) . '</legend><ul>';
|
|
|
|
|
|
|
|
if ( ! empty( $field['description'] ) ) {
|
|
|
|
echo '<li class="description">' . wp_kses_post( $field['description'] ) . '</li>';
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ( $field['options'] as $key => $value ) {
|
|
|
|
|
|
|
|
echo '<li><label><input
|
|
|
|
name="' . esc_attr( $field['id'] ) . '"
|
|
|
|
value="' . esc_attr( $key ) . '"
|
|
|
|
type="radio"
|
|
|
|
class="' . esc_attr( $field['class'] ) . '"
|
|
|
|
' . checked( esc_attr( $field['value'] ), esc_attr( $key ), false ) . '
|
|
|
|
/> ' . esc_html( $value ) . '</label>
|
|
|
|
</li>';
|
|
|
|
}
|
|
|
|
echo '</ul></fieldset>';
|
|
|
|
}
|