本文整理匯總了PHP中ProcessPeer::retrieveByPk方法的典型用法代碼示例。如果您正苦於以下問題:PHP ProcessPeer::retrieveByPk方法的具體用法?PHP ProcessPeer::retrieveByPk怎麽用?PHP ProcessPeer::retrieveByPk使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ProcessPeer
的用法示例。
在下文中一共展示了ProcessPeer::retrieveByPk方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: exists
public function exists($ProUid)
{
$oPro = ProcessPeer::retrieveByPk($ProUid);
return is_object($oPro) && get_class($oPro) == 'Process';
}
示例2: getProcessDetail
/**
* Get Process details
*
* @param object $httpData{PRO_UID}
* @return array
*/
public function getProcessDetail($httpData)
{
require_once 'classes/model/Process.php';
G::loadClass('tasks');
$tasks = new Tasks();
$PRO_UID = $httpData->PRO_UID;
$process = ProcessPeer::retrieveByPk($PRO_UID);
$tasksList = $tasks->getAllTasks($PRO_UID);
$rootNode->id = $process->getProUid();
$rootNode->type = 'process';
$rootNode->typeLabel = G::LoadTranslation('ID_PROCESS');
$rootNode->text = $process->getProTitle();
$rootNode->leaf = count($tasksList) > 0 ? false : true;
$rootNode->iconCls = 'ss_sprite ss_application';
$rootNode->expanded = true;
foreach ($tasksList as $task) {
$node = new stdClass();
$node->id = $task['TAS_UID'];
$node->type = 'task';
$node->typeLabel = G::LoadTranslation('ID_TASK');
$node->text = $task['TAS_TITLE'];
$node->iconCls = 'ss_sprite ss_layout';
$node->leaf = true;
$rootNode->children[] = $node;
}
$treeDetail[] = $rootNode;
return $treeDetail;
}