Added in progress button to events list
This commit is contained in:
parent
d90c78ad9d
commit
a21eaafc61
|
@ -666,8 +666,12 @@ else {
|
|||
|
||||
if ($i != 0 && $allow_action) {
|
||||
//Actions
|
||||
$data[$i] = '';
|
||||
|
||||
$data[$i] = '<a href="javascript:" onclick="show_event_dialog(' . $event["id_evento"] . ', '.$group_rep.');">';
|
||||
$data[$i] .= html_print_input_hidden('event_title_'.$event["id_evento"], "#".$event["id_evento"]." - " . strip_tags(io_safe_output($event["evento"])), true);
|
||||
$data[$i] .= html_print_image ("images/eye.png", true,
|
||||
array ("title" => __('Show more')));
|
||||
$data[$i] .= '</a>';
|
||||
|
||||
if(!$readonly) {
|
||||
// Validate event
|
||||
if (($event["estado"] != 1) && (tags_checks_event_acl ($config["id_user"], $event["id_grupo"], "EW", $event['clean_tags'], $childrens_ids))) {
|
||||
|
@ -676,6 +680,13 @@ else {
|
|||
$data[$i] .= html_print_image ("images/ok.png", true,
|
||||
array ("title" => __('Validate event')));
|
||||
$data[$i] .= '</a>';
|
||||
// Display the go to in progress status button
|
||||
if ($event["estado"] != 2) {
|
||||
$data[$i] .= '<a href="javascript:validate_event_advanced('.$event["id_evento"].', 2)" id="in-progress-'.$event["id_evento"].'">';
|
||||
$data[$i] .= html_print_image ("images/hourglass.png", true,
|
||||
array ("title" => __('Change to in progress status')));
|
||||
$data[$i] .= '</a>';
|
||||
}
|
||||
}
|
||||
|
||||
// Delete event
|
||||
|
@ -693,13 +704,7 @@ else {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
$data[$i] .= '<a href="javascript:" onclick="show_event_dialog(' . $event["id_evento"] . ', '.$group_rep.');">';
|
||||
$data[$i] .= html_print_input_hidden('event_title_'.$event["id_evento"], "#".$event["id_evento"]." - " . strip_tags(io_safe_output($event["evento"])), true);
|
||||
$data[$i] .= html_print_image ("images/eye.png", true,
|
||||
array ("title" => __('Show more')));
|
||||
$data[$i] .= '</a>';
|
||||
|
||||
|
||||
$table->cellstyle[count($table->data)][$i] = 'background: #F3F3F3;';
|
||||
|
||||
$i++;
|
||||
|
|
|
@ -966,6 +966,7 @@ function validate_event_advanced(id, new_status) {
|
|||
|
||||
// Change state image
|
||||
$("#validate-"+id).css("display", "none");
|
||||
$("#in-progress-"+id).css("display", "none");
|
||||
$("#status_img_"+id).attr ("src", "images/tick.png");
|
||||
$("#status_img_"+id).attr ("title", <?php echo "'" . __('Event validated') . "'"; ?>);
|
||||
$("#status_img_"+id).attr ("alt", <?php echo "'" . __('Event validated') . "'"; ?>);
|
||||
|
@ -986,9 +987,21 @@ function validate_event_advanced(id, new_status) {
|
|||
|
||||
// Change state image
|
||||
$("#status_img_"+id).attr ("src", "images/hourglass.png");
|
||||
$("#status_img_"+id).attr ("title", <?php echo "'" . __('Event in process') . "'"; ?>);
|
||||
$("#status_img_"+id).attr ("data-title", <?php echo "'" . __('Event in process') . "'"; ?>);
|
||||
$("#status_img_"+id).attr ("alt", <?php echo "'" . __('Event in process') . "'"; ?>);
|
||||
|
||||
$("#status_img_"+id).attr ("data-use_title_for_force_title", 1);
|
||||
$("#status_img_"+id).attr ("class", "forced_title");
|
||||
|
||||
// Change the actions buttons
|
||||
$("#delete-"+id).remove();
|
||||
$("#in-progress-"+id).remove();
|
||||
// Format the new disabled delete icon.
|
||||
$("#validate-"+id).parent().append("<img id='delete-" + id + "' src='images/cross.disabled.png' />");
|
||||
$("#delete-"+id).attr ("data-title", <?php echo "'" . __('Is not allowed delete events in process') . "'"; ?>);
|
||||
$("#delete-"+id).attr ("alt", <?php echo "'" . __('Is not allowed delete events in process') . "'"; ?>);
|
||||
$("#delete-"+id).attr ("data-use_title_for_force_title", 1);
|
||||
$("#delete-"+id).attr ("class", "forced_title");
|
||||
|
||||
// Remove row due to new state
|
||||
if (($("#status").val() == 0)
|
||||
|| ($("#status").val() == 1)) {
|
||||
|
|
Loading…
Reference in New Issue