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