PluginProbe
Taskbuilder – Project Management & Task Management Tool With Kanban Board / 2.0.3
Taskbuilder – Project Management & Task Management Tool With Kanban Board v2.0.3
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 / projects / wppm_create_project.php

wppm_create_project.php in Taskbuilder – Project Management & Task Management Tool With Kanban Board 2.0.3, at includes/admin/projects/wppm_create_project.php

36 lines 1.9 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 global $wpdb, $wppmfunction;
6 // project name
7 $name = isset($_POST['name']) ? sanitize_text_field($_POST['name']) : '';
8 if($name) $args['name'] = $name;
9
10 // Description
11 $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(),));
12 $project_description = isset($_POST['wppm_proj_description']) ? wp_kses(htmlspecialchars_decode($_POST['wppm_proj_description'], ENT_QUOTES),$allowedtags) : '';
13 if($project_description) $args['wppm_proj_description'] = $project_description;
14
15 //Project start date
16 $text = isset($_POST['wppm_start_date']) ? sanitize_text_field($_POST['wppm_start_date']) : '';
17 if($text) $args['wppm_start_date'] = date("Y-m-d H:i:s" ,strtotime($text));
18
19 //Project end date
20 $text2 = isset($_POST['wppm_end_date']) ? sanitize_text_field($_POST['wppm_end_date']) : '';
21 if($text2) $args['wppm_end_date'] = date("Y-m-d H:i:s" ,strtotime($text2));
22
23 // Category
24 $project_category = isset($_POST['wppm_create_project_category']) ? intval(sanitize_text_field($_POST['wppm_create_project_category'])) : '';
25 if($project_category) $args['wppm_create_project_category'] = $project_category;
26
27 //Assign user
28 $arrVal = isset($_POST['user_names']) ? array_unique($_POST['user_names']) : array();
29 if($arrVal) $args['user_names'] = $wppmfunction->sanitize_array($arrVal);
30
31 $args = apply_filters( 'wppm_before_create_project_args', $args);
32
33 $project_id = WPPM_Functions::create_project($args);
34
35 do_action('wppm_after_project_created',$project_id);
36