Exemplo n.º 1
0
 protected function loadPage()
 {
     $table = new PhortuneAccount();
     $conn = $table->establishConnection('r');
     $rows = queryfx_all($conn, 'SELECT a.* FROM %T a %Q %Q %Q %Q', $table->getTableName(), $this->buildJoinClause($conn), $this->buildWhereClause($conn), $this->buildOrderClause($conn), $this->buildLimitClause($conn));
     return $table->loadAllFromArray($rows);
 }