本文整理汇总了PHP中COperation::loadRefsPosesDispVasc方法的典型用法代码示例。如果您正苦于以下问题:PHP COperation::loadRefsPosesDispVasc方法的具体用法?PHP COperation::loadRefsPosesDispVasc怎么用?PHP COperation::loadRefsPosesDispVasc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类COperation
的用法示例。
在下文中一共展示了COperation::loadRefsPosesDispVasc方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: explode
$sejour_id = CValue::get("sejour_id");
$operation_id = CValue::get("operation_id");
$operateur_ids = CValue::get("operateur_ids");
if (!is_array($operateur_ids)) {
$operateur_ids = explode("-", $operateur_ids);
CMbArray::removeValue("", $operateur_ids);
}
if (count($operateur_ids)) {
$operateur = new CMediusers();
$where = array("user_id" => "IN(" . implode(",", $operateur_ids) . ")");
$operateurs = $operateur->loadList($where);
} else {
$operateurs = array();
}
$poses = array();
if ($operation_id) {
$interv = new COperation();
$interv->load($operation_id);
$poses = $interv->loadRefsPosesDispVasc(true);
} elseif ($sejour_id) {
$sejour = new CSejour();
$sejour->load($sejour_id);
$poses = $sejour->loadRefsPosesDispVasc(true);
}
// Création du template
$smarty = new CSmartyDP();
$smarty->assign("poses", $poses);
$smarty->assign("sejour_id", $sejour_id);
$smarty->assign("operation_id", $operation_id);
$smarty->assign("operateur_ids", $operateur_ids);
$smarty->display("inc_list_pose_disp_vasc.tpl");