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


PHP CTask::getTaskCount方法代碼示例

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


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

示例1: CTask

 }
 // prepare (and translate) the module name ready for the suffix
 if ($del) {
     $result = $obj->delete();
     if (is_array($result)) {
         $AppUI->setMsg($msg, UI_MSG_ERROR);
         $AppUI->redirect();
     } else {
         $AppUI->setMsg('Task deleted');
         $AppUI->redirect('', -1);
     }
 }
 $result = $obj->store($AppUI);
 if ($taskRecount) {
     $myTask = new CTask();
     CProject::updateTaskCount($taskRecount, $myTask->getTaskCount($taskRecount));
 }
 //$obj->task_project
 if (is_array($result)) {
     $AppUI->setMsg($result, UI_MSG_ERROR, true);
     $AppUI->holdObject($obj);
     $AppUI->redirect('m=tasks&a=addedit');
 }
 if ($result) {
     $task_parent = (int) w2PgetParam($_POST, 'task_parent', 0);
     $old_task_parent = (int) w2PgetParam($_POST, 'old_task_parent', 0);
     if ($task_parent != $old_task_parent) {
         $oldTask = new CTask();
         $oldTask->load($old_task_parent);
         $oldTask->updateDynamics(false);
     }
開發者ID:joly,項目名稱:web2project,代碼行數:31,代碼來源:do_task_aed.php

示例2: hasTasks

 /**
  * @deprecated
  */
 public static function hasTasks($projectId, $override = null)
 {
     trigger_error("CProject::hasTasks() has been deprecated in v3.0 and will be removed in v4.0. Please use CTask->getTaskCount() instead.", E_USER_NOTICE);
     $task = new CTask();
     $task->overrideDatabase($override);
     return $task->getTaskCount($projectId);
 }
開發者ID:victorrod,項目名稱:web2project,代碼行數:10,代碼來源:projects.class.php


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