Craft\AmForms_FormsService::getAllForms PHP Method

getAllForms() public method

Get all forms.
public getAllForms ( $indexBy = 'id' ) : AmForms_FormModel | array | null
return AmForms_FormModel | array | null
    public function getAllForms($indexBy = 'id')
    {
        return $this->getCriteria(array('order' => 'name', 'indexBy' => $indexBy))->find();
    }