You are here

function get_all_contributions in Contribute 6

1 call to get_all_contributions()
page_show_all_contributions in ./contribute.module

File

./contribute.module, line 251
Lets users contribute to projects

Code

function get_all_contributions() {
  $result = db_query('SELECT * FROM {contribute_contributions}');
  return $result;
}