Пример #1
0
 function showContent()
 {
     $notice = $this->nli->notice;
     $out = $this->nli->out;
     $mem = Group_member::getKV('uri', $notice->uri);
     if (!empty($mem)) {
         $out->elementStart('div', 'join-activity');
         $profile = $mem->getMember();
         $group = $mem->getGroup();
         // TRANS: Text for "joined list" item in activity plugin.
         // TRANS: %1$s is a profile URL, %2$s is a profile name,
         // TRANS: %3$s is a group home URL, %4$s is a group name.
         $out->raw(sprintf(_m('<a href="%1$s">%2$s</a> joined the group <a href="%3$s">%4$s</a>.'), $profile->profileurl, $profile->getBestName(), $group->homeUrl(), $group->getBestName()));
         $out->elementEnd('div');
     } else {
         parent::showContent();
     }
 }
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer $id the ID of the model to be loaded
  * @return SystemListItem the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = SystemListItem::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }