Advertisement
Guest User

Untitled

a guest
May 22nd, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $locations = new ArrayList();
  2. foreach(Location::get() as $item){
  3. $locations->push(new ArrayData(array(
  4. 'Title' => $item->Title,
  5. 'Lat' => $item->Lat,
  6. 'Long' => $item->Long,
  7. )));
  8. }
  9. $locations->toArray();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement