Ejemplo n.º 1
0
 public function ta()
 {
     $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/ta.php", ['list' => $fm->getFollowMe(login_user()->getId()), 'count' => $fm->getCount()]);
     $this->__view("User/footer.php");
 }