woocommerce/admin/woocommerce-admin-attribute...

397 lines
16 KiB
PHP
Raw Normal View History

2011-08-09 15:16:18 +00:00
<?php
/**
* Functions used for the attributes section in WordPress Admin
2012-08-14 12:21:34 +00:00
*
2011-08-10 17:11:11 +00:00
* The attributes section lets users add custom attributes to assign to products - they can also be used in the layered nav widget.
2011-08-09 15:16:18 +00:00
*
2011-08-10 17:11:11 +00:00
* @author WooThemes
2011-08-09 15:16:18 +00:00
* @category Admin
2012-08-14 12:21:34 +00:00
* @package WooCommerce/Admin
* @version 1.6.4
2011-08-09 15:16:18 +00:00
*/
2012-08-14 12:21:34 +00:00
2011-08-09 15:16:18 +00:00
/**
* Attributes admin panel
2012-08-14 12:21:34 +00:00
*
2011-08-09 15:16:18 +00:00
* Shows the created attributes and lets you add new ones.
* The added attributes are stored in the database and can be used for layered navigation.
2012-08-14 12:21:34 +00:00
*
* @access public
* @return void
2011-08-09 15:16:18 +00:00
*/
2011-08-10 17:11:11 +00:00
function woocommerce_attributes() {
global $wpdb, $woocommerce;
2012-08-14 12:21:34 +00:00
if ( ! empty( $_POST['add_new_attribute'] ) ) {
2012-08-14 12:21:34 +00:00
check_admin_referer( 'woocommerce-add-new_attribute' );
2012-08-14 12:21:34 +00:00
$attribute_name = sanitize_title( esc_attr( $_POST['attribute_name'] ) );
$attribute_type = esc_attr( $_POST['attribute_type'] );
$attribute_label = esc_attr( $_POST['attribute_label'] );
2012-10-09 14:57:02 +00:00
$attribute_orderby = esc_attr( $_POST['attribute_orderby'] );
2012-08-14 12:21:34 +00:00
if ( ! $attribute_label )
$attribute_label = ucwords( $attribute_name );
2012-08-14 12:21:34 +00:00
if ( ! $attribute_name )
$attribute_name = sanitize_title( $attribute_label );
2012-08-14 12:21:34 +00:00
if ( $attribute_name && strlen( $attribute_name ) < 30 && $attribute_type && ! taxonomy_exists( $woocommerce->attribute_taxonomy_name( $attribute_name ) ) ) {
2012-08-14 12:21:34 +00:00
$wpdb->insert(
$wpdb->prefix . "woocommerce_attribute_taxonomies",
array(
'attribute_name' => $attribute_name,
'attribute_label' => $attribute_label,
2012-10-09 14:57:02 +00:00
'attribute_type' => $attribute_type,
'attribute_orderby' => $attribute_orderby
)
);
2012-08-14 12:21:34 +00:00
wp_safe_redirect( get_admin_url() . 'edit.php?post_type=product&page=woocommerce_attributes' );
2011-08-09 15:16:18 +00:00
exit;
}
2012-08-14 12:21:34 +00:00
} elseif ( ! empty( $_POST['save_attribute'] ) && ! empty( $_GET['edit'] ) ) {
2012-08-14 12:21:34 +00:00
$edit = absint( $_GET['edit'] );
check_admin_referer( 'woocommerce-save-attribute_' . $edit );
2012-08-14 12:21:34 +00:00
$attribute_name = sanitize_title( esc_attr( $_POST['attribute_name'] ) );
$attribute_type = esc_attr( $_POST['attribute_type'] );
$attribute_label = esc_attr( $_POST['attribute_label'] );
2012-10-09 14:57:02 +00:00
$attribute_orderby = esc_attr( $_POST['attribute_orderby'] );
2012-08-14 12:21:34 +00:00
if ( ! $attribute_label )
$attribute_label = ucwords( $attribute_name );
2012-08-14 12:21:34 +00:00
if ( ! $attribute_name )
$attribute_name = sanitize_title( $attribute_label );
2012-08-14 12:21:34 +00:00
$old_attribute_name = sanitize_title( $wpdb->get_var( "SELECT attribute_name FROM " . $wpdb->prefix . "woocommerce_attribute_taxonomies WHERE attribute_id = $edit" ) );
2012-08-14 12:21:34 +00:00
if ( $old_attribute_name != $attribute_name && taxonomy_exists( $woocommerce->attribute_taxonomy_name( $attribute_name ) ) ) {
2012-08-14 12:21:34 +00:00
echo '<div id="woocommerce_errors" class="error fade"><p>' . __( 'Taxonomy exists - please change the slug', 'woocommerce' ) . '</p></div>';
2012-08-14 12:21:34 +00:00
} elseif ( $attribute_name && strlen( $attribute_name ) < 30 && $attribute_type ) {
2012-08-14 12:21:34 +00:00
$wpdb->update(
$wpdb->prefix . "woocommerce_attribute_taxonomies",
array(
'attribute_name' => $attribute_name,
'attribute_label' => $attribute_label,
2012-10-09 14:57:02 +00:00
'attribute_type' => $attribute_type,
'attribute_orderby' => $attribute_orderby
2012-08-14 12:21:34 +00:00
),
array(
'attribute_id' => $edit
)
);
2012-08-14 12:21:34 +00:00
if ( $old_attribute_name != $attribute_name && ! empty( $old_attribute_name ) ) {
2012-08-14 12:21:34 +00:00
// Update taxonomies in the wp term taxonomy table
2012-08-14 12:21:34 +00:00
$wpdb->update(
$wpdb->term_taxonomy,
2012-08-14 12:21:34 +00:00
array(
'taxonomy' => $woocommerce->attribute_taxonomy_name( $attribute_name )
2012-08-14 12:21:34 +00:00
),
array(
'taxonomy' => $woocommerce->attribute_taxonomy_name( $old_attribute_name )
)
);
2012-08-14 12:21:34 +00:00
// Update taxonomy ordering term meta
2012-08-14 12:21:34 +00:00
$wpdb->update(
$wpdb->prefix . "woocommerce_termmeta",
2012-08-14 12:21:34 +00:00
array(
'meta_key' => 'order_pa_' . sanitize_title( $attribute_name )
2012-08-14 12:21:34 +00:00
),
array(
'meta_key' => 'order_pa_' . sanitize_title( $old_attribute_name )
)
);
2012-08-14 12:21:34 +00:00
// Update product attributes which use this taxonomy
$old_attribute_name_length = strlen($old_attribute_name) + 3;
$attribute_name_length = strlen($attribute_name) + 3;
2012-08-14 12:21:34 +00:00
$wpdb->query( "
2012-08-14 12:21:34 +00:00
UPDATE {$wpdb->postmeta}
SET meta_value = replace( meta_value, 's:{$old_attribute_name_length}:\"pa_{$old_attribute_name}\"', 's:{$attribute_name_length}:\"pa_{$attribute_name}\"' )
WHERE meta_key = '_product_attributes'"
);
2012-08-14 12:21:34 +00:00
// Update variations which use this taxonomy
2012-08-14 12:21:34 +00:00
$wpdb->update(
$wpdb->postmeta,
2012-08-14 12:21:34 +00:00
array(
'meta_key' => 'attribute_' . sanitize_title( $attribute_name )
2012-08-14 12:21:34 +00:00
),
array(
'meta_key' => 'attribute_' . sanitize_title( $old_attribute_name )
)
);
}
2012-08-14 12:21:34 +00:00
wp_safe_redirect( get_admin_url() . 'edit.php?post_type=product&page=woocommerce_attributes' );
exit;
2012-08-14 12:21:34 +00:00
}
2012-08-14 12:21:34 +00:00
} elseif ( ! empty( $_GET['delete'] ) ) {
2012-08-14 12:21:34 +00:00
$delete = absint( $_GET['delete'] );
check_admin_referer( 'woocommerce-delete-attribute_' . $delete );
2012-08-14 12:21:34 +00:00
$att_name = $wpdb->get_var( "SELECT attribute_name FROM " . $wpdb->prefix . "woocommerce_attribute_taxonomies WHERE attribute_id = $delete" );
2012-08-14 12:21:34 +00:00
if ( $att_name && $wpdb->query( "DELETE FROM " . $wpdb->prefix . "woocommerce_attribute_taxonomies WHERE attribute_id = $delete" ) ) {
2012-08-14 12:21:34 +00:00
$taxonomy = $woocommerce->attribute_taxonomy_name( $att_name );
if ( taxonomy_exists( $taxonomy ) ) {
2012-08-14 12:21:34 +00:00
$terms = get_terms( $taxonomy, 'orderby=name&hide_empty=0');
foreach ( $terms as $term )
wp_delete_term( $term->term_id, $taxonomy );
2012-08-14 12:21:34 +00:00
}
2012-08-14 12:21:34 +00:00
wp_safe_redirect( get_admin_url() . 'edit.php?post_type=product&page=woocommerce_attributes' );
exit;
2012-08-14 12:21:34 +00:00
}
2012-08-14 12:21:34 +00:00
}
2012-08-14 12:21:34 +00:00
if ( ! empty( $_GET['edit'] ) && $_GET['edit'] > 0 )
2011-08-10 17:11:11 +00:00
woocommerce_edit_attribute();
2012-08-14 12:21:34 +00:00
else
2011-08-10 17:11:11 +00:00
woocommerce_add_attribute();
2012-08-14 12:21:34 +00:00
2011-08-09 15:16:18 +00:00
}
2012-08-14 12:21:34 +00:00
2011-08-09 15:16:18 +00:00
/**
* Edit Attribute admin panel
2012-08-14 12:21:34 +00:00
*
* Shows the interface for changing an attributes type between select and text
2012-08-14 12:21:34 +00:00
*
* @access public
* @return void
2011-08-09 15:16:18 +00:00
*/
2011-08-10 17:11:11 +00:00
function woocommerce_edit_attribute() {
2011-08-09 15:16:18 +00:00
global $wpdb;
2012-08-14 12:21:34 +00:00
$edit = absint( $_GET['edit'] );
2012-08-14 12:21:34 +00:00
$attribute_to_edit = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix . "woocommerce_attribute_taxonomies WHERE attribute_id = '$edit'");
$att_type = $attribute_to_edit->attribute_type;
$att_label = $attribute_to_edit->attribute_label;
$att_name = $attribute_to_edit->attribute_name;
2012-10-09 14:57:02 +00:00
$att_orderby = $attribute_to_edit->attribute_orderby;
2011-08-09 15:16:18 +00:00
?>
2011-08-10 17:11:11 +00:00
<div class="wrap woocommerce">
<div class="icon32 icon32-attributes" id="icon-woocommerce"><br/></div>
<h2><?php _e('Edit Attribute', 'woocommerce') ?></h2>
<form action="admin.php?page=woocommerce_attributes&amp;edit=<?php echo absint( $edit ); ?>" method="post">
<table class="form-table">
<tbody>
<tr class="form-field form-required">
<th scope="row" valign="top">
<label for="attribute_label"><?php _e('Name', 'woocommerce'); ?></label>
</th>
<td>
<input name="attribute_label" id="attribute_label" type="text" value="<?php echo esc_attr( $att_label ); ?>" />
<p class="description"><?php _e('Name for the attribute (shown on the front-end).', 'woocommerce'); ?></p>
</td>
</tr>
<tr class="form-field form-required">
<th scope="row" valign="top">
<label for="attribute_name"><?php _e('Slug', 'woocommerce'); ?></label>
</th>
<td>
<input name="attribute_name" id="attribute_name" type="text" value="<?php echo esc_attr( $att_name ); ?>" maxlength="28" />
<p class="description"><?php _e('Unique slug/reference for the attribute; must be shorter than 28 characters.', 'woocommerce'); ?></p>
</td>
2012-08-14 12:21:34 +00:00
</tr>
<tr class="form-field form-required">
<th scope="row" valign="top">
<label for="attribute_type"><?php _e('Type', 'woocommerce'); ?></label>
</th>
<td>
<select name="attribute_type" id="attribute_type">
<option value="select" <?php selected( $att_type, 'select' ); ?>><?php _e('Select', 'woocommerce') ?></option>
2012-08-14 12:21:34 +00:00
<option value="text" <?php selected( $att_type, 'text' ); ?>><?php _e('Text', 'woocommerce') ?></option>
</select>
<p class="description"><?php _e('Determines how you select attributes for products. <strong>Text</strong> allows manual entry via the product page, whereas <strong>select</strong> attribute terms can be defined from this section. If you plan on using an attribute for variations use <strong>select</strong>.', 'woocommerce'); ?></p>
</td>
</tr>
2012-10-09 14:57:02 +00:00
<tr class="form-field form-required">
<th scope="row" valign="top">
<label for="attribute_orderby"><?php _e('Default sort order', 'woocommerce'); ?></label>
</th>
<td>
<select name="attribute_orderby" id="attribute_orderby">
<option value="menu_order" <?php selected( $att_orderby, 'menu_order' ); ?>><?php _e( 'Custom ordering', 'woocommerce' ) ?></option>
<option value="name" <?php selected( $att_orderby, 'name' ); ?>><?php _e( 'Name', 'woocommerce' ) ?></option>
<option value="id" <?php selected( $att_orderby, 'id' ); ?>><?php _e( 'Term ID', 'woocommerce' ) ?></option>
</select>
<p class="description"><?php _e( 'Determines the sort order on the frontend for this attribute. If using custom ordering, you can drag and drop the terms in this attribute', 'woocommerce' ); ?></p>
</td>
</tr>
</tbody>
</table>
<p class="submit"><input type="submit" name="save_attribute" id="submit" class="button-primary" value="<?php _e('Update', 'woocommerce'); ?>"></p>
<?php wp_nonce_field( 'woocommerce-save-attribute_' . $edit ); ?>
</form>
2011-08-09 15:16:18 +00:00
</div>
<?php
2012-08-14 12:21:34 +00:00
2011-08-09 15:16:18 +00:00
}
2012-08-14 12:21:34 +00:00
2011-08-09 15:16:18 +00:00
/**
* Add Attribute admin panel
2012-08-14 12:21:34 +00:00
*
2011-08-09 15:16:18 +00:00
* Shows the interface for adding new attributes
2012-08-14 12:21:34 +00:00
*
* @access public
* @return void
2011-08-09 15:16:18 +00:00
*/
2011-08-10 17:11:11 +00:00
function woocommerce_add_attribute() {
global $woocommerce;
2011-08-09 15:16:18 +00:00
?>
2011-08-10 17:11:11 +00:00
<div class="wrap woocommerce">
<div class="icon32 icon32-attributes" id="icon-woocommerce"><br/></div>
2012-01-05 11:31:22 +00:00
<h2><?php _e('Attributes', 'woocommerce') ?></h2>
2011-08-09 15:16:18 +00:00
<br class="clear" />
<div id="col-container">
<div id="col-right">
<div class="col-wrap">
<table class="widefat fixed" style="width:100%">
<thead>
<tr>
2012-01-05 11:31:22 +00:00
<th scope="col"><?php _e('Name', 'woocommerce') ?></th>
<th scope="col"><?php _e('Slug', 'woocommerce') ?></th>
2012-01-05 11:31:22 +00:00
<th scope="col"><?php _e('Type', 'woocommerce') ?></th>
2012-10-09 14:57:02 +00:00
<th scope="col"><?php _e('Order by', 'woocommerce') ?></th>
2012-01-05 11:31:22 +00:00
<th scope="col" colspan="2"><?php _e('Terms', 'woocommerce') ?></th>
2011-08-09 15:16:18 +00:00
</tr>
</thead>
<tbody>
<?php
$attribute_taxonomies = $woocommerce->get_attribute_taxonomies();
2011-08-09 15:16:18 +00:00
if ( $attribute_taxonomies ) :
foreach ($attribute_taxonomies as $tax) :
?><tr>
<td><a href="edit-tags.php?taxonomy=<?php echo esc_html($woocommerce->attribute_taxonomy_name($tax->attribute_name)); ?>&amp;post_type=product"><?php echo esc_html( $tax->attribute_label ); ?></a>
2012-08-14 12:21:34 +00:00
<div class="row-actions"><span class="edit"><a href="<?php echo esc_url( add_query_arg('edit', $tax->attribute_id, 'admin.php?page=woocommerce_attributes') ); ?>"><?php _e('Edit', 'woocommerce'); ?></a> | </span><span class="delete"><a class="delete" href="<?php echo esc_url( wp_nonce_url( add_query_arg('delete', $tax->attribute_id, 'admin.php?page=woocommerce_attributes'), 'woocommerce-delete-attribute_' . $tax->attribute_id ) ); ?>"><?php _e('Delete', 'woocommerce'); ?></a></span></div>
2011-08-09 15:16:18 +00:00
</td>
<td><?php echo esc_html( $tax->attribute_name ); ?></td>
2011-09-30 18:22:17 +00:00
<td><?php echo esc_html( ucwords( $tax->attribute_type ) ); ?></td>
2012-10-09 14:57:02 +00:00
<td><?php
switch ( $tax->attribute_orderby ) {
case 'name' :
_e( 'Name', 'woocommerce' );
break;
case 'id' :
_e( 'Term ID', 'woocommerce' );
break;
default:
_e( 'Custom ordering', 'woocommerce' );
break;
}
?></td>
2012-08-14 12:21:34 +00:00
<td><?php
if (taxonomy_exists($woocommerce->attribute_taxonomy_name($tax->attribute_name))) :
2011-08-09 15:16:18 +00:00
$terms_array = array();
$terms = get_terms( $woocommerce->attribute_taxonomy_name($tax->attribute_name), 'orderby=name&hide_empty=0' );
2011-08-09 15:16:18 +00:00
if ($terms) :
foreach ($terms as $term) :
$terms_array[] = $term->name;
endforeach;
echo implode(', ', $terms_array);
else :
echo '<span class="na">&ndash;</span>';
endif;
else :
echo '<span class="na">&ndash;</span>';
endif;
?></td>
2012-01-05 11:31:22 +00:00
<td><a href="edit-tags.php?taxonomy=<?php echo esc_html($woocommerce->attribute_taxonomy_name($tax->attribute_name)); ?>&amp;post_type=product" class="button alignright"><?php _e('Configure&nbsp;terms', 'woocommerce'); ?></a></td>
2011-08-09 15:16:18 +00:00
</tr><?php
endforeach;
else :
2012-10-09 14:57:02 +00:00
?><tr><td colspan="6"><?php _e('No attributes currently exist.', 'woocommerce') ?></td></tr><?php
2011-08-09 15:16:18 +00:00
endif;
?>
</tbody>
</table>
</div>
</div>
<div id="col-left">
<div class="col-wrap">
<div class="form-wrap">
2012-01-05 11:31:22 +00:00
<h3><?php _e('Add New Attribute', 'woocommerce') ?></h3>
<p><?php _e('Attributes let you define extra product data, such as size or colour. You can use these attributes in the shop sidebar using the "layered nav" widgets. Please note: you cannot rename an attribute later on.', 'woocommerce') ?></p>
2011-09-22 12:41:16 +00:00
<form action="admin.php?page=woocommerce_attributes" method="post">
<div class="form-field">
<label for="attribute_label"><?php _e('Name', 'woocommerce'); ?></label>
2011-12-11 15:32:37 +00:00
<input name="attribute_label" id="attribute_label" type="text" value="" />
2012-01-05 11:31:22 +00:00
<p class="description"><?php _e('Name for the attribute (shown on the front-end).', 'woocommerce'); ?></p>
</div>
2012-08-14 12:21:34 +00:00
<div class="form-field">
<label for="attribute_name"><?php _e('Slug', 'woocommerce'); ?></label>
<input name="attribute_name" id="attribute_name" type="text" value="" maxlength="28" />
2012-01-05 11:31:22 +00:00
<p class="description"><?php _e('Unique slug/reference for the attribute; must be shorter than 28 characters.', 'woocommerce'); ?></p>
2011-08-09 15:16:18 +00:00
</div>
2012-08-14 12:21:34 +00:00
<div class="form-field">
<label for="attribute_type"><?php _e('Type', 'woocommerce'); ?></label>
<select name="attribute_type" id="attribute_type">
2012-01-05 11:31:22 +00:00
<option value="select"><?php _e('Select', 'woocommerce') ?></option>
2012-08-14 12:21:34 +00:00
<option value="text"><?php _e('Text', 'woocommerce') ?></option>
</select>
2012-01-05 11:31:22 +00:00
<p class="description"><?php _e('Determines how you select attributes for products. <strong>Text</strong> allows manual entry via the product page, whereas <strong>select</strong> attribute terms can be defined from this section. If you plan on using an attribute for variations use <strong>select</strong>.', 'woocommerce'); ?></p>
2011-08-09 15:16:18 +00:00
</div>
2012-10-09 14:57:02 +00:00
<div class="form-field">
<label for="attribute_orderby"><?php _e( 'Default sort order', 'woocommerce' ); ?></label>
<select name="attribute_orderby" id="attribute_orderby">
<option value="menu_order"><?php _e( 'Custom ordering', 'woocommerce' ) ?></option>
<option value="name"><?php _e( 'Name', 'woocommerce' ) ?></option>
<option value="id"><?php _e( 'Term ID', 'woocommerce' ) ?></option>
</select>
<p class="description"><?php _e( 'Determines the sort order on the frontend for this attribute. If using custom ordering, you can drag and drop the terms in this attribute', 'woocommerce' ); ?></p>
</div>
2012-08-14 12:21:34 +00:00
2012-01-05 11:31:22 +00:00
<p class="submit"><input type="submit" name="add_new_attribute" id="submit" class="button" value="<?php _e('Add Attribute', 'woocommerce'); ?>"></p>
<?php wp_nonce_field( 'woocommerce-add-new_attribute' ); ?>
2011-08-09 15:16:18 +00:00
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript">
/* <![CDATA[ */
2012-08-14 12:21:34 +00:00
2011-08-09 15:16:18 +00:00
jQuery('a.delete').click(function(){
2012-01-05 11:31:22 +00:00
var answer = confirm ("<?php _e('Are you sure you want to delete this attribute?', 'woocommerce'); ?>");
2011-08-09 15:16:18 +00:00
if (answer) return true;
return false;
});
2012-08-14 12:21:34 +00:00
2011-08-09 15:16:18 +00:00
/* ]]> */
</script>
</div>
<?php
}