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


PHP ilUserUtil::getProfileLink方法代碼示例

本文整理匯總了PHP中ilUserUtil::getProfileLink方法的典型用法代碼示例。如果您正苦於以下問題:PHP ilUserUtil::getProfileLink方法的具體用法?PHP ilUserUtil::getProfileLink怎麽用?PHP ilUserUtil::getProfileLink使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ilUserUtil的用法示例。


在下文中一共展示了ilUserUtil::getProfileLink方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: fillRow

 /**
  * Fill table row
  */
 protected function fillRow($a_set)
 {
     global $ilCtrl, $lng;
     $this->tpl->setVariable("VAL_ID", $a_set["usr_id"]);
     if ($this->getType() == self::TYPE_GLOBAL_SEARCH) {
         include_once './Services/User/classes/class.ilUserUtil.php';
         $link = ilUserUtil::getProfileLink($a_set['usr_id']);
         if ($link) {
             $this->tpl->setVariable('IMG_LINKED_TO_PROFILE', $link);
             $this->tpl->setVariable('USR_IMG_SRC_LINKED', ilObjUser::_getPersonalPicturePath($a_set['usr_id'], 'xsmall'));
         } else {
             $this->tpl->setVariable('USR_IMG_SRC', ilObjUser::_getPersonalPicturePath($a_set['usr_id'], 'xsmall'));
         }
     }
     foreach ($this->getSelectedColumns() as $field) {
         switch ($field) {
             case 'gender':
                 $a_set['gender'] = $a_set['gender'] ? $this->lng->txt('gender_' . $a_set['gender']) : '';
                 $this->tpl->setCurrentBlock('custom_fields');
                 $this->tpl->setVariable('VAL_CUST', $a_set[$field]);
                 $this->tpl->parseCurrentBlock();
                 break;
             case 'birthday':
                 $a_set['birthday'] = $a_set['birthday'] ? ilDatePresentation::formatDate(new ilDate($a_set['birthday'], IL_CAL_DATE)) : $this->lng->txt('no_date');
                 $this->tpl->setCurrentBlock('custom_fields');
                 $this->tpl->setVariable('VAL_CUST', $a_set[$field]);
                 $this->tpl->parseCurrentBlock();
                 break;
             case 'access_until':
                 $this->tpl->setCurrentBlock('custom_fields');
                 $this->tpl->setVariable('CUST_CLASS', ' ' . $a_set['access_class']);
                 $this->tpl->setVariable('VAL_CUST', $a_set[$field]);
                 $this->tpl->parseCurrentBlock();
                 break;
             case 'last_login':
                 $a_set['last_login'] = $a_set['last_login'] ? ilDatePresentation::formatDate(new ilDateTime($a_set['last_login'], IL_CAL_DATETIME)) : $this->lng->txt('no_date');
                 $this->tpl->setCurrentBlock('custom_fields');
                 $this->tpl->setVariable('VAL_CUST', $a_set[$field]);
                 $this->tpl->parseCurrentBlock();
                 break;
             case 'login':
                 if ($this->admin_mode) {
                     $ilCtrl->setParameterByClass("ilobjusergui", "ref_id", "7");
                     $ilCtrl->setParameterByClass("ilobjusergui", "obj_id", $a_set["usr_id"]);
                     $ilCtrl->setParameterByClass("ilobjusergui", "search", "1");
                     $link = $ilCtrl->getLinkTargetByClass(array("iladministrationgui", "ilobjusergui"), "view");
                     $a_set[$field] = "<a href=\"" . $link . "\">" . $a_set[$field] . "</a>";
                 }
                 // fallthrough
             // fallthrough
             default:
                 $this->tpl->setCurrentBlock('custom_fields');
                 $this->tpl->setVariable('VAL_CUST', (string) ($a_set[$field] ? $a_set[$field] : ''));
                 $this->tpl->parseCurrentBlock();
                 break;
         }
     }
     if ($this->getType() == self::TYPE_GLOBAL_SEARCH) {
         $this->tpl->setVariable('SEARCH_RELEVANCE', $this->getRelevanceHTML($a_set['relevance']));
     }
 }
開發者ID:Walid-Synakene,項目名稱:ilias,代碼行數:64,代碼來源:class.ilRepositoryUserResultTableGUI.php


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