Guest User

Untitled

a guest
Jul 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. ################################################
  2. # Component to join all the tables
  3. ################################################
  4. public function executeGetFacilitiesByRegion() {
  5. $c = new Criteria();
  6. $c->addJoin(FacilityPeer::DISTRICT_ID, DistrictPeer::ID);
  7. $c->addJoin(DistrictPeer::COUNTY_ID, CountyPeer::ID);
  8. $c->addAscendingOrderByColumn(CountyPeer::TITLE);
  9. $c->setDistinct();
  10. $this->facility = CountyPeer::doSelect($c);
  11. }
Add Comment
Please, Sign In to add comment