Craft\FormBuilder2_EntryService::getAllEntriesFromFormID PHP Method

getAllEntriesFromFormID() public method

Get All Entries From Form ID
public getAllEntriesFromFormID ( $formId )
    public function getAllEntriesFromFormID($formId)
    {
        $result = craft()->db->createCommand()->select('*')->from('formbuilder2_entries')->where('formId = :formId', array(':formId' => $formId))->queryAll();
        return $result;
    }