Microweber\Providers\FormsManager::states_list PHP Method

states_list() public method

public states_list ( $country = false )
    public function states_list($country = false)
    {
        if (!$country) {
            return false;
        }
        $states = new \Microweber\Utils\CountryState();
        $res = $states->getStates($country);
        return $res;
    }