Example #1
0
 /**
  * Set the volunteers
  */
 private function set_volunteers()
 {
     global $wpdb;
     $volunteers = $wpdb->get_results($this->sql, ARRAY_A);
     foreach ($volunteers as $volunteer) {
         $tmp_volunteer = new API_Volunteer($volunteer['id']);
         $tmp_volunteer->set_contributions($volunteer['n']);
         $this->volunteers[] = $tmp_volunteer;
     }
 }