id = $form_id; $this->form = $form; } /** * Get all the form entries * * @return array */ public function all() { return weforms_get_form_entries( $this->id ); } /** * Get a single entry * * @param int $entry_id * * @return mixed */ public function get( $entry_id ) { return new WeForms_Form_Entry( $entry_id, $this->form ); } }