當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CTask::updateUserSpecificTaskPriority方法代碼示例

本文整理匯總了PHP中CTask::updateUserSpecificTaskPriority方法的典型用法代碼示例。如果您正苦於以下問題:PHP CTask::updateUserSpecificTaskPriority方法的具體用法?PHP CTask::updateUserSpecificTaskPriority怎麽用?PHP CTask::updateUserSpecificTaskPriority使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CTask的用法示例。


在下文中一共展示了CTask::updateUserSpecificTaskPriority方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

                }
            }
        }
        if (isset($hassign) && !$del == 1) {
            $overAssignment = $obj->updateAssigned($hassign, $hperc_assign_ar, false, false);
            //check if OverAssignment occured, database has not been updated in this case
            if ($overAssignment) {
                $AppUI->setMsg('The following Users have not been assigned in order to prevent' . ' from Over-Assignment:', UI_MSG_ERROR);
                $AppUI->setMsg('<br />' . $overAssignment, UI_MSG_ERROR, true);
            } else {
                $AppUI->setMsg('User(s) assigned to Task', UI_MSG_OK);
            }
        }
        // process the user specific task priority
        if ($chUTP == 1) {
            $obj->updateUserSpecificTaskPriority($user_task_priority, $user_id);
            $AppUI->setMsg('User specific Task Priority updated', UI_MSG_OK, true);
        }
        if ($store == 1) {
            if ($msg = $obj->store()) {
                $AppUI->setMsg($msg, UI_MSG_ERROR, true);
            } else {
                $AppUI->setMsg('Task(s) updated', UI_MSG_OK, true);
            }
        }
    }
}
if ($rm && $del) {
    $AppUI->setMsg('User(s) unassigned from Task', UI_MSG_OK);
}
$AppUI->redirect();
開發者ID:klr2003,項目名稱:sourceread,代碼行數:31,代碼來源:do_task_assign_aed.php

示例2: CTask

 if (isset($_POST['bulk_task_allow_other_user_tasklogs']) && $bulk_task_allow_other_user_tasklogs != '') {
     $upd_task = new CTask();
     $upd_task->load($val);
     if ($upd_task->task_id) {
         $upd_task->task_allow_other_user_tasklogs = $bulk_task_allow_other_user_tasklogs;
         $result = $upd_task->store();
         if (!$result) {
             break;
         }
     }
 }
 //Action: Set user task priority for current user ($APPUI->userid)
 if ($upd_task->task_id && $bulk_task_user_priority != "") {
     $assigned_users = $upd_task->assignees($upd_task->task_id);
     if (array_key_exists("{$AppUI->user_id}", $assigned_users)) {
         $upd_task->updateUserSpecificTaskPriority($bulk_task_user_priority, $AppUI->user_id);
     }
 }
 //Action: Other Actions
 if (isset($_POST['bulk_task_other']) && $bulk_task_other != '') {
     if ($upd_task->task_id) {
         //Option 1 - Mark as finished
         if ($bulk_task_other == '1') {
             $upd_task->task_percent_complete = 100;
             if (!$upd_task->task_end_date || $upd_task->task_end_date == '0000-00-00 00:00:00') {
                 $end_date = null;
                 $end_date = new w2p_Utilities_Date();
                 $upd_task->task_end_date = $end_date->format(FMT_DATETIME_MYSQL);
             }
             $result = $upd_task->store();
             if (!$result) {
開發者ID:illuminate3,項目名稱:web2project,代碼行數:31,代碼來源:do_task_bulk_aed.php


注:本文中的CTask::updateUserSpecificTaskPriority方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。