本文整理匯總了PHP中VTTaskManager::getTasks方法的典型用法代碼示例。如果您正苦於以下問題:PHP VTTaskManager::getTasks方法的具體用法?PHP VTTaskManager::getTasks怎麽用?PHP VTTaskManager::getTasks使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類VTTaskManager
的用法示例。
在下文中一共展示了VTTaskManager::getTasks方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: vtDisplayTaskList
function vtDisplayTaskList($adb, $requestUrl, $current_language)
{
global $theme, $app_strings;
$image_path = "themes/{$theme}/images/";
$util = new VTWorkflowUtils();
$module = new VTWorkflowApplication("tasklist");
$mod = return_module_language($current_language, $module->name);
if (!$util->checkAdminAccess()) {
$errorUrl = $module->errorPageUrl($mod['LBL_ERROR_NOT_ADMIN']);
$util->redirectTo($errorUrl, $mod['LBL_ERROR_NOT_ADMIN']);
return;
}
$smarty = new vtigerCRM_Smarty();
$tm = new VTTaskManager($adb);
$smarty->assign("tasks", $tm->getTasks());
$smarty->assign("moduleNames", array("Contacts", "Applications"));
$smarty->assign("taskTypes", array("VTEmailTask", "VTDummyTask"));
$smarty->assign("returnUrl", $requestUrl);
$smarty->assign("MOD", return_module_language($current_language, 'Settings'));
$smarty->assign("APP", $app_strings);
$smarty->assign("THEME", $theme);
$smarty->assign("IMAGE_PATH", $image_path);
$smarty->assign("MODULE_NAME", $module->label);
$smarty->assign("PAGE_NAME", 'Task List');
$smarty->assign("PAGE_TITLE", 'List available tasks');
$smarty->assign("moduleName", $moduleName);
$smarty->display("{$module->name}/ListTasks.tpl");
}
示例2: getActiveCount
/**
* Function to get the count of active workflows
* @return <Integer> count of acive workflows
*/
public static function getActiveCount()
{
$db = PearDatabase::getInstance();
vimport('~~/modules/com_vtiger_workflow/VTTaskManager.inc');
$taskManager = new VTTaskManager($db);
$taskList = $taskManager->getTasks();
$examinedIdList = array();
foreach ($taskList as $taskDetails) {
$workFlowId = $taskDetails->workflowId;
if (in_array($workFlowId, $examinedIdList)) {
continue;
}
if ($taskDetails->active) {
array_push($examinedIdList, $workFlowId);
}
}
return count($examinedIdList);
}