PluginProbe
Taskbuilder – Project Management & Task Management Tool With Kanban Board / 1.0.4
Taskbuilder – Project Management & Task Management Tool With Kanban Board v1.0.4
6.0.5 6.0.2 6.0.3 6.0.4 6.0.1 6.0.0 5.0.8 5.0.9 4.0.9 5.0.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 All 57 releases
taskbuilder / includes / admin / settings / wppm_set_edit_priority.php

wppm_set_edit_priority.php in Taskbuilder – Project Management & Task Management Tool With Kanban Board 1.0.4, at includes/admin/settings/wppm_set_edit_priority.php

33 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit; // Exit if accessed directly
4 }
5
6 global $current_user, $wpdb;
7
8 if (!($current_user->ID && $current_user->has_cap('manage_options'))) {exit;}
9
10 $priority_id = isset($_POST) && isset($_POST['priority_id']) ? intval(sanitize_text_field($_POST['priority_id'])) : '';
11 if (!$priority_id) {exit;}
12
13 $priority_name = isset($_POST) && isset($_POST['priority_name']) ? sanitize_text_field($_POST['priority_name']) : '';
14 if (!$priority_name) {exit;}
15
16 $priority_color = isset($_POST) && isset($_POST['priority_color']) ? sanitize_text_field($_POST['priority_color']) : '';
17 if (!$priority_color) {exit;}
18
19 $priority_bg_color = isset($_POST) && isset($_POST['priority_bg_color']) ? sanitize_text_field($_POST['priority_bg_color']) : '';
20 if (!$priority_bg_color) {exit;}
21
22 if ($priority_color==$priority_bg_color) {
23 echo '{ "sucess_status":"0","messege":"'.__('Priority color and background color should not be same.','taskbuilder').'" }';
24 die();
25 }
26 $values= array(
27 'name'=>$priority_name,
28 'color'=>$priority_color,
29 'bg_color'=>$priority_bg_color
30 );
31 $wpdb->update($wpdb->prefix.'wppm_task_priorities',$values,array('id'=>intval($priority_id)));
32 echo '{ "sucess_status":"1","messege":"Success" }';
33 ?>