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


PHP lms_steam::user_get_groups方法代碼示例

本文整理匯總了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\"");
 }
開發者ID:rolwi,項目名稱:koala,代碼行數:31,代碼來源:messages_write.php


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