本文整理匯總了PHP中lms_steam::user_get_groups方法的典型用法代碼示例。如果您正苦於以下問題:PHP lms_steam::user_get_groups方法的具體用法?PHP lms_steam::user_get_groups怎麽用?PHP lms_steam::user_get_groups使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類lms_steam
的用法示例。
在下文中一共展示了lms_steam::user_get_groups方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: usort
$buddies = $cache->call("lms_steam::user_get_buddies", $user->get_name());
usort($buddies, "sort_buddies");
$content->setVariable("LABEL_BUDDIES", gettext("your contacts"));
foreach ($buddies as $buddy) {
$content->setCurrentBlock("BLOCK_BUDDY");
$content->setVariable("USER_ID", $buddy["OBJ_ID"]);
if ($receiver instanceof steam_user && $receiver->get_id() == $buddy["OBJ_ID"]) {
$content->setVariable("USER_SELECTED", "selected=\"selected\"");
}
$content->setVariable("USER_FULLNAME", $buddy["USER_FULLNAME"]);
$content->setVariable("USER_FIRSTNAME", $buddy["USER_FIRSTNAME"]);
$content->parse("BLOCK_BUDDY");
}
$content->setVariable("LABEL_GROUPS", gettext("your groups"));
$content->setVariable("LABEL_ADD_RECIEVER", gettext("Add another reciever"));
$groups = lms_steam::user_get_groups($user->get_name(), FALSE);
usort($groups, "sort_objects");
foreach ($groups as $group) {
$content->setCurrentBlock("BLOCK_GROUP");
$content->setVariable("GROUP_ID", $group["OBJ_ID"]);
if ($receiver instanceof steam_group && $receiver->get_id() == $group["OBJ_ID"]) {
$content->setVariable("GROUP_SELECTED", "selected=\"selected\"");
}
$content->setVariable("GROUP_NAME", $group["OBJ_NAME"]);
$content->parse("BLOCK_GROUP");
}
if ($receiverID != $receivers[sizeof($receivers) - 1]) {
$content->setVariable("DISPLAY", "style=\"display:none\"");
} else {
$content->setVariable("DISPLAY", "style=\"display:inline\"");
}