Beispiel #1
0
function cp_edit_task_handler()
{
    global $wpdb, $cp;
    // Nonce check
    check_admin_referer('edit-task', 'nonce');
    $data = $_REQUEST['data'];
    extract($data);
    cp_update_task($data);
    $permalink = cp_get_task_permalink($ID);
    wp_send_json_success(array('redirect' => $permalink));
}
Beispiel #2
0
/**
 * Update scripts for specific versions
 *
 * @since 1.3
 */
function cp_update()
{
    global $wpdb;
    $installed_version = get_option('CP_VERSION');
    if ($installed_version != COLLABPRESS_VERSION) {
        // 1.3 specific upgrades
        if (version_compare($installed_version, '1.3-dev', '<')) {
            $tablename = $wpdb->prefix . 'cp_project_users';
            // Add project_users table
            $sql = "CREATE TABLE {$tablename} (\n\t\t\t\tproject_member_id bigint(20) NOT NULL AUTO_INCREMENT,\n\t\t\t\tproject_id bigint(20) NOT NULL,\n\t\t\t\tuser_id bigint(20) NOT NULL,\n\t\t\t\tUNIQUE KEY project_member_id (project_member_id)\n\t\t\t);";
            require_once ABSPATH . 'wp-admin/includes/upgrade.php';
            dbDelta($sql);
            // Move old user relationships into new user table
            $projects = get_posts(array('post_type' => 'cp-projects', 'posts_per_page' => -1));
            foreach ($projects as $project) {
                $users = get_post_meta($project->ID, '_cp-project-users', true);
                foreach ($users as $user_id) {
                    cp_add_user_to_project($project->ID, $user_id);
                }
            }
        }
        // 1.4 specific upgrades
        if (version_compare($installed_version, '1.4-dev', '<')) {
            // Change task due date storage format from m/d/yy to mysql formatted date
            $tasks = get_posts(array('post_type' => 'cp-tasks', 'posts_per_page' => -1));
            foreach ($tasks as $task) {
                $due_date = cp_get_task_due_date_mysql($task->ID);
                $unix_timestamp = strtotime($due_date);
                $formatted_date = gmdate('Y-m-d H:i:s', $unix_timestamp);
                cp_update_task(array('ID' => $task->ID, 'task_due_date' => $formatted_date));
            }
            // 1.4 introduces the date format option, which we need to add
            // a default to in the cp_options.
            $cp_options = cp_get_options();
            if (empty($cp_options['date_format'])) {
                $cp_options['date_format'] = 'F j, Y';
                update_option('cp_options', $cp_options);
            }
        }
        update_option('CP_VERSION', COLLABPRESS_VERSION);
    }
}