| 1 |
|
| 2 |
<?php |
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; // Exit if accessed directly |
| 5 |
} |
| 6 |
global $current_user,$wpdb,$wppmfunction; |
| 7 |
|
| 8 |
if ( check_ajax_referer( 'wppm_create_task', '_ajax_nonce', false ) != 1 ) { |
| 9 |
wp_send_json_error( 'Unauthorised request!', 401 ); |
| 10 |
} |
| 11 |
|
| 12 |
// Task name |
| 13 |
$name = isset($_POST['name']) ? sanitize_text_field($_POST['name']) : ''; |
| 14 |
if($name) $args['name'] = $name; |
| 15 |
|
| 16 |
// Description |
| 17 |
$allowedtags = array( 'br' => array(), 'abbr' => array('title' => array(),), 'p' => array(), 'strong' => array(), 'a' => array('href' => array(), 'title' => array(),'target'=> array(), 'rel'=>array()),'em' =>array(),'span' =>array(), 'blockquote'=>array('cite' => array(),),'div' => array('class' => array(),'title' => array(),'style' => array(),),'ul'=>array(),'li'=>array(),'ol'=>array(),'img' => array( 'alt'=> array(),'class' => array(),'height' => array(),'src'=> array(),'width'=> array(),)); |
| 18 |
$task_description = isset($_POST['wppm_task_description']) ? wp_kses(htmlspecialchars_decode($_POST['wppm_task_description'], ENT_QUOTES),$allowedtags) : ''; |
| 19 |
if($task_description) $args['wppm_task_description'] = $task_description; |
| 20 |
|
| 21 |
//project |
| 22 |
$wppm_task_project = isset($_POST['wppm_task_project']) ? intval(sanitize_text_field($_POST['wppm_task_project'])) : ''; |
| 23 |
if($wppm_task_project) $args['wppm_task_project'] = $wppm_task_project; |
| 24 |
|
| 25 |
//Task start date |
| 26 |
$text = isset($_POST['wppm_task_start_date']) ? sanitize_text_field($_POST['wppm_task_start_date']) : ''; |
| 27 |
if($text) $args['wppm_task_start_date'] = date("Y-m-d H:i:s" ,strtotime($text)); |
| 28 |
|
| 29 |
//Task end date |
| 30 |
$text2 = isset($_POST['wppm_task_end_date']) ? sanitize_text_field($_POST['wppm_task_end_date']) : ''; |
| 31 |
if($text2) $args['wppm_task_end_date'] = date("Y-m-d H:i:s" ,strtotime($text2)); |
| 32 |
|
| 33 |
// Priority |
| 34 |
$task_priority = isset($_POST['wppm_create_task_priority']) ? intval(sanitize_text_field($_POST['wppm_create_task_priority'])) : ''; |
| 35 |
if($task_priority) $args['wppm_create_task_priority'] = $task_priority; |
| 36 |
|
| 37 |
//Assign user |
| 38 |
$arrVal = isset($_POST['user_names']) ? array_unique($_POST['user_names']) : array(); |
| 39 |
if($arrVal) $args['user_names'] = $wppmfunction->sanitize_array($arrVal); |
| 40 |
|
| 41 |
$args = apply_filters( 'wppm_before_create_task_args', $args); |
| 42 |
|
| 43 |
$task_id = WPPM_Functions::create_task($args); |
| 44 |
do_action('wppm_after_task_created', $task_id); |
| 45 |
|