Ejemplo n.º 1
0
 public function me()
 {
     $this->__lib("FollowManagement");
     $this->theme->setTitle("我关注的用户");
     $this->theme->setBreadcrumb("我关注的用户");
     $fm = new FollowManagement();
     $fm->setPager(req()->get('page'), 20);
     $this->__view("User/header.php");
     $this->__view("Follow/me.php", ['list' => $fm->getMeFollow(login_user()->getId()), 'count' => $fm->getCount()]);
     $this->__view("User/footer.php");
 }