Craft\FormBuilder2_EntryService::getEntryById PHP Method

getEntryById() public method

public getEntryById ( $entryId )
    public function getEntryById($entryId)
    {
        $entryRecord = FormBuilder2_EntryRecord::model()->findByAttributes(array('id' => $entryId));
        $entry = FormBuilder2_EntryModel::populateModel($entryRecord);
        return $entry;
    }