~fabiocbalbuquerque/sahana-agasti/web-services

1
2
3
4
5
6
7
8
9
10
11
12
<?php
$columns = array(
    'id' => array('title' => 'Id', 'sortable' => false),
    'foo' => array('title' => 'Name', 'sortable' => true),
    'bar' => array('title' => 'Drink', 'sortable' => true),
  );

//pager comes in from the action

//echo agListForm::facilitylist($sf_request,'Foo Listing', $columns, $pager);
echo agListForm::foolist($sf_request,'Foo Listing', $columns, $pager);
?>