protected function loadPage()
 {
     $table = new PhabricatorAuthInvite();
     $conn_r = $table->establishConnection('r');
     $data = queryfx_all($conn_r, 'SELECT * FROM %T %Q %Q %Q', $table->getTableName(), $this->buildWhereClause($conn_r), $this->buildOrderClause($conn_r), $this->buildLimitClause($conn_r));
     $invites = $table->loadAllFromArray($data);
     // If the objects were loaded via verification code, set a flag to make
     // sure the viewer can see them.
     if ($this->verificationCodes !== null) {
         foreach ($invites as $invite) {
             $invite->setViewerHasVerificationCode(true);
         }
     }
     return $invites;
 }