ASong2U_Web/wp-content/plugins/events-manager/templates/forms/event-editor.php

208 lines
9.2 KiB
PHP

<?php
/* WARNING! This file may change in the near future as we intend to add features to the event editor. If at all possible, try making customizations using CSS, jQuery, or using our hooks and filters. - 2012-02-14 */
/*
* To ensure compatability, it is recommended you maintain class, id and form name attributes, unless you now what you're doing.
* You also must keep the _wpnonce hidden field in this form too.
*/
global $EM_Event, $EM_Notices, $bp;
//check that user can access this page
if( is_object($EM_Event) && !$EM_Event->can_manage('edit_events','edit_others_events') ){
?>
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php echo sprintf(__('You do not have the rights to manage this %s.','dbem'),__('Event','dbem')); ?></p></div>
<?php
return false;
}elseif( !is_object($EM_Event) ){
$EM_Event = new EM_Event();
}
$required = '*';
echo $EM_Notices;
//Success notice
if( !empty($_REQUEST['success']) ){
$EM_Event = new $EM_Event(); //reset the event
if(!get_option('dbem_events_form_reshow')) return false;
}
?>
<form enctype='multipart/form-data' id="event-form" method="post" action="">
<div class="wrap">
<?php do_action('em_front_event_form_header'); ?>
<?php if(get_option('dbem_events_anonymous_submissions') && !is_user_logged_in()): ?>
<h4 class="event-form-submitter"><?php _e ( 'Your Details', 'dbem' ); ?></h4>
<div class="inside event-form-submitter">
<p>
<label><?php _e('Name', 'dbem'); ?></label>
<input type="text" name="event_owner_name" id="event-owner-name" value="<?php echo esc_attr($EM_Event->event_owner_name); ?>" />
</p>
<p>
<label><?php _e('Email', 'dbem'); ?></label>
<input type="text" name="event_owner_email" id="event-owner-email" value="<?php echo esc_attr($EM_Event->event_owner_email); ?>" />
</p>
<?php do_action('em_font_event_form_guest'); ?>
</div>
<?php endif; ?>
<h4 class="event-form-name"><?php _e ( 'Event Name', 'dbem' ); ?></h4>
<div class="inside event-form-name">
<input type="text" name="event_name" id="event-name" value="<?php echo htmlspecialchars($EM_Event->event_name,ENT_QUOTES); ?>" /><?php echo $required; ?>
<br />
<?php _e ( 'The event name. Example: Birthday party', 'dbem' )?>
<?php if( empty($EM_Event->group_id) ): ?>
<?php
$user_groups = array();
if( !empty($bp->groups) ){
$group_data = groups_get_user_groups(get_current_user_id());
foreach( $group_data['groups'] as $group_id ){
if( groups_is_user_admin(get_current_user_id(), $group_id) ){
$user_groups[] = groups_get_group( array('group_id'=>$group_id));
}
}
}
?>
<?php if( count($user_groups) > 0 ): ?>
<p>
<select name="group_id">
<option value="<?php echo $BP_Group->id; ?>">Not a Group Event</option>
<?php
foreach($user_groups as $BP_Group){
?>
<option value="<?php echo $BP_Group->id; ?>"><?php echo $BP_Group->name; ?></option>
<?php
}
?>
</select>
<br />
<?php _e ( 'Select a group you admin to attach this event to it. Note that all other admins of that group can modify the booking, and you will not be able to unattach the event without deleting it.', 'dbem' )?>
</p>
<?php endif; ?>
<?php endif; ?>
</div>
<h4 class="event-form-when"><?php _e ( 'When', 'dbem' ); ?></h4>
<div class="inside">
<?php
if( empty($EM_Event->event_id) && $EM_Event->can_manage('edit_recurring_events','edit_others_recurring_events') && get_option('dbem_recurrence_enabled') ){
em_locate_template('forms/event/when-with-recurring.php',true);
}elseif( $EM_Event->is_recurring() ){
em_locate_template('forms/event/recurring-when.php',true);
?>
<script type="text/javascript">
jQuery(document).ready( function($) {
//Recurrence Warnings
$('#event_form').submit( function(event){
confirmation = confirm(EM.event_reschedule_warning);
if( confirmation == false ){
event.preventDefault();
}
});
});
</script>
<?php
}else{
em_locate_template('forms/event/when.php',true);
}
?>
</div>
<?php if( get_option('dbem_locations_enabled') ): ?>
<h4 class="event-form-where"><?php _e ( 'Where', 'dbem' ); ?></h4>
<div class="inside event-form-where">
<?php em_locate_template('forms/event/location.php',true); ?>
</div>
<?php endif; ?>
<h4 class="event-form-details"><?php _e ( 'Details', 'dbem' ); ?></h4>
<div class="inside event-form-details">
<div class="event-editor">
<?php if( get_option('dbem_events_form_editor') && function_exists('wp_editor') ): ?>
<?php wp_editor($EM_Event->post_content, 'em-editor-content', array('textarea_name'=>'content') ); ?>
<?php else: ?>
<textarea name="content" rows="10" style="width:100%"><?php echo $EM_Event->post_content ?></textarea>
<br />
<?php _e ( 'Details about the event.', 'dbem' )?><?php _e ( 'HTML Allowed.', 'dbem' )?>
<?php endif; ?>
</div>
<div class="event-extra-details">
<?php if(get_option('dbem_categories_enabled')) :?>
<?php $categories = EM_Categories::get(array('orderby'=>'name','hide_empty'=>0)); ?>
<?php if( count($categories) > 0 ): ?>
<div class="event-cateogries">
<!-- START Categories -->
<label for="event_categories[]"><?php _e ( 'Category:', 'dbem' ); ?></label>
<select name="event_categories[]" multiple size="10">
<?php
$selected = $EM_Event->get_categories()->get_ids();
$walker = new EM_Walker_CategoryMultiselect();
$args_em = array( 'hide_empty' => 0, 'name' => 'event_categories[]', 'hierarchical' => true, 'id' => EM_TAXONOMY_CATEGORY, 'taxonomy' => EM_TAXONOMY_CATEGORY, 'selected' => $selected, 'walker'=> $walker);
echo walk_category_dropdown_tree($categories, 0, $args_em);
?></select>
<!-- END Categories -->
</div>
<?php endif; ?>
<?php endif; ?>
<?php if(get_option('dbem_attributes_enabled')) : ?>
<?php
$attributes = em_get_attributes();
$has_depreciated = false;
?>
<?php if( count( $attributes['names'] ) > 0 ) : ?>
<?php foreach( $attributes['names'] as $name) : ?>
<div class="event-attributes">
<label for="em_attributes[<?php echo $name ?>]"><?php echo $name ?></label>
<?php if( count($attributes['values'][$name]) > 0 ): ?>
<select name="em_attributes[<?php echo $name ?>]">
<?php foreach($attributes['values'][$name] as $attribute_val): ?>
<?php if( is_array($EM_Event->event_attributes) && array_key_exists($name, $EM_Event->event_attributes) && $EM_Event->event_attributes[$name]==$attribute_val ): ?>
<option selected="selected"><?php echo $attribute_val; ?></option>
<?php else: ?>
<option><?php echo $attribute_val; ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select>
<?php else: ?>
<input type="text" name="em_attributes[<?php echo $name ?>]" value="<?php echo array_key_exists($name, $EM_Event->event_attributes) ? htmlspecialchars($EM_Event->event_attributes[$name], ENT_QUOTES):''; ?>" />
<?php endif; ?>
</div>
<?php endforeach; ?>
<?php endif; ?>
<?php endif; ?>
</div>
</div>
<?php if( $EM_Event->can_manage('upload_event_images','upload_event_images') ): ?>
<h4><?php _e ( 'Event Image', 'dbem' ); ?></h4>
<div class="inside event-form-image">
<?php if ($EM_Event->get_image_url() != '') : ?>
<img src='<?php echo $EM_Event->get_image_url('medium'); ?>' alt='<?php echo $EM_Event->event_name ?>'/>
<?php else : ?>
<?php _e('No image uploaded for this event yet', 'dbem') ?>
<?php endif; ?>
<br /><br />
<label for='event_image'><?php _e('Upload/change picture', 'dbem') ?></label> <input id='event-image' name='event_image' id='event_image' type='file' size='40' />
<br />
<label for='event_image_delete'><?php _e('Delete Image?', 'dbem') ?></label> <input id='event-image-delete' name='event_image_delete' id='event_image_delete' type='checkbox' value='1' />
</div>
<?php endif; ?>
<?php if( get_option('dbem_rsvp_enabled') && $EM_Event->can_manage('manage_bookings','manage_others_bookings') ) : ?>
<!-- START Bookings -->
<h4><?php _e('Bookings/Registration','dbem'); ?></h4>
<div class="inside event-form-bookings">
<?php em_locate_template('forms/event/bookings.php',true); ?>
</div>
<!-- END Bookings -->
<?php endif; ?>
<?php do_action('em_front_event_form_footer'); ?>
</div>
<p class="submit">
<input type="submit" name="events_update" value="<?php _e ( 'Submit Event', 'dbem' ); ?> &raquo;" />
</p>
<input type="hidden" name="event_id" value="<?php echo $EM_Event->event_id; ?>" />
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('wpnonce_event_save'); ?>" />
<input type="hidden" name="action" value="event_save" />
<?php if( !empty($_REQUEST['redirect_to']) ): ?>
<input type="hidden" name="redirect_to" value="<?php echo $_REQUEST['redirect_to']; ?>" />
<?php endif; ?>
</form>
<?php em_locate_template('forms/tickets-form.php', true); //put here as it can't be in the add event form ?>