Drug and Alcohol Rehab Centers in Indiana
Updated on April 22, 2019
The state of Indiana takes an active role in helping to manage and prevent substance abuse in its residents. This includes ensuring that there are quality rehab facilities that rely on evidence-based methods for treatment. Fortunately, Indiana is home to several top-rated treatment facilities.
Indiana Substance Abuse Statistics
Like most states in the U.S., Indiana has been impacted by the rise in opioid addictions and overdoses, though the local rate is lower than the national rate. Alcohol is an ongoing problem in Indiana, especially among young people. Other commonly abused substances include cocaine and heroin. Consider these must-know addiction statistics for Indiana:
- Thirty-five percent of all admissions to substance abuse treatment centers are for alcohol dependency.
- In 2015, 32 percent of the new HIV cases were transmitted via injection drug use.
- Pain reliever misuse tops the list of prescription drug cases at 22.8 percent.
- In 2016, there were a total of 794 opioid overdose deaths in this state.
- In Indiana, 5.8 percent of high school seniors admit to misusing prescription drugs.
Choosing The Right Rehab Program In Indiana
The state of Indiana recognizes substance abuse as a chronic disorder and have strategies in place for prevention, treatment, and recovery. This includes creating care options for low-income families and promoting medication-assisted programs. When looking at a rehab program, there are specific criteria to consider, such as:
- Accreditation: The facility must be licensed by the state of Indiana. Some will also have third-party accreditation from the Commission on Accreditation of Rehabilitation Facilities (CARF) and The Joint Commision.
- Evidence-Based Approaches: This means the facility bases its treatment programs on three components: clinical experience, best research evidence, and patient preferences. It is the gold standard for all care plans.
- Length/Location: Plans offer varying lengths of treatment options. For instance, inpatient rehab typically lasts from 30 to 120 or more days. Location is another essential consideration. Families may need to travel to find a facility best suited to their needs.
- Aftercare and Alumni Services: Aftercare and alumni services reduce the risk of relapse. Facilities partner with organizations like AA or NA to ensure someone with a substance use disorder has the resources and support necessary to stay healthy.
- Payment: Many insurance companies will pay for substance abuse treatment at least in part, but it’s important to check with your provider. Other considerations might include a health savings account, money in the bank, and a loan or a payment arrangement with the treatment facility.
Indiana Drug And Alcohol Rehab Services
It’s important to understand specific services when researching rehab treatments in Indiana, although they will vary from center to center. Possible services include:
- Drug and Alcohol Detox Programs: Detox is the period right after a person stops using a drug. The body withdraws and undergoes unpleasant and possibly dangerous side effects. Detox programs provide a supervised environment for withdrawal, and drug therapy, to manage the side effects.
- Medication-Assisted Treatment (MAT): MAT provides FDA-approved medication for those with an addiction to an opioid or alcohol. These medications are usually used along with therapy to promote participation in treatment.
- Behavioral Therapy: Behavioral therapy focuses on changing destructive behaviors like drug or alcohol use. It’s about understanding why a person might do these things and finding ways to overcome the behaviors for the future.
- Treatment for Co-Occurring Disorders (Dual Diagnosis): Often someone with addiction also suffers from a mental health issue like depression, even if they’re not aware of it. A dual diagnosis approach allows for the treatment of both the addiction and the mental health problem at the same time to increase the chances of recovery.
Finding Addiction Treatment
Addiction treatment is a complicated decision that requires research and forethought. The state of Indiana offers a number of resources that can help. Families should be prepared to travel to the right facility if necessary and look carefully at what types of services might help the person who is suffering from addiction.
//$startTime = microtime(true);
require_once 'inc/db.php';
require_once 'inc/lookups.php';
$requestLookup = $requestLookup ? $requestLookup : sanitize_text_field($_GET['lookup']);
$requestState = $requestState ? $requestState : sanitize_text_field($_GET['state']);
$requestCity = $requestCity ? $requestCity : sanitize_text_field($_GET['city']);
$requestLocation = $requestLocation? $requestLocation : sanitize_text_field($_GET['location']);
$dataOnly = $dataOnly ? $dataOnly : (bool) $_GET['dataonly'];
if ($requestLookup) {
if (array_key_exists($requestLookup, $lookupGroups)) {
$lookup = $requestLookup;
if (is_array($lookupGroups[$lookup])) {
$lookupGroup = $lookupGroups[$lookup];
}
$lookupName = $lookupTitles[$lookup];
}
if (!$lookup) {
$err['lookup'] = "Sorry, we couldn't find that category.";
}
}
if ($requestState && $lookup) {
$stateSlug = str_replace('-'.$requestLookup, '', $requestState);
$state = Model::factory('State')->where('url', $stateSlug)->find_one();
if (!$state) {
$err['state'] = "Sorry, we couldn't find that state.";
$is404 = true;
}
}
if ($requestCity && $state) {
$city = $state->city()->where('url', $requestCity)->find_one();
if (!$city) {
$err['city'] = "Sorry, we couldn't find that city.";
$is404 = true;
}
}
if ($requestLocation && $city ) {
/* Fetch Location Only under primary Lookup*/
if($lookup=='rehab-centers')
$location = $city->location()->where('url', $requestLocation)->find_one();
if (!$location) {
$err['location'] = "Sorry, we couldn't find that location.";
$is404 = true;
}
/* Special Header Addons - Locations Under Sub Lookups*/
if($lookup!='rehab-centers')
$sublookup_head = true;
}
/***
* Let's work backwards with what we have.
***/
// City Table Column Selector :: Num Locations by Lookup
switch($lookup){
case 'inpatient-rehab-centers' : $col = 'num_inpa'; break;
default : $col = 'num_locations';
}
if ($location) {
$attributes['S'] = $attributes['T'] = $attributes['D'] = $attributes['P'] = array();
foreach ($location->attribute()->find_many() as $attribute) {
$attributes[$attribute->type][] = $attribute;
}
$mapAddress = urlencode($location->location_street1 . ' ' . $location->location_street2 . ' ' . $city->name . ' ' . $state->abbr);
if ($dataOnly) {
// Reserved for location data-only
} else {
include_once 'templates/location.php';
}
}
else if ($city) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$locations = ORM::for_table('location')
->raw_query('SELECT location.*
FROM location JOIN attribute_location ON location.id = attribute_location.location_id
WHERE location.city_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY location.id', array($city->id))
->find_many();
}
elseif ($lookupGroup) {
$built_re_state = explode('-'.$requestLookup,$requestState)[0];
$build_redirect = '/rehab-centers/'.$built_re_state.'-rehab-centers/'.$requestCity.'/';
header("HTTP/1.1 301 Moved Permanently");
header('Location: https://www.rehabcenter.net' . $build_redirect);
exit();
// Standard lookups
//$locations = ORM::for_table('location')->where('location.city_id', $city->id)->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('location.id')->find_many();
}
else {
// Show all rehab centers
$locations = $city->location()->find_many();
}
/* Show City Page Only if # Segments exist*/
if(count($segments)==3&&!$is404){
if ($dataOnly) {
// Reserved for city data-only
include_once 'templates/city-data.php';
} else {
include_once 'templates/city.php';
}
}
}elseif ($state) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$cities = ORM::for_table('city')
->raw_query('SELECT city.*
FROM city
JOIN location ON city.id = location.city_id
JOIN attribute_location ON location.id = attribute_location.location_id
WHERE city.state_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY city.id', array($state->id))
->find_many();
}
else if ($lookupGroup) {
$cities = ORM::for_table('city')->select('city.*')->where('city.state_id', $state->id)->join('location', array('city.id', '=', 'location.city_id'))->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('city.id')->find_many();
}
else {
$cities = $state->city()->find_many();
}
// Let's make sure we only have # segments on the URL array(3)
if(count($segments)==2){
if ($dataOnly) {
include_once 'templates/state-data.php';
} else {
include_once 'templates/state.php';
}
}
}
else if ($lookup&&!$is404) {
$states = Model::factory('State')->find_many();
if ($dataOnly&&!$is404) {
include_once 'templates/lookup-data.php';
} else {
include_once 'templates/lookup.php';
}
}
else {
$is404 = true;
header('HTTP/1.0 404 Not Found');
}
// $endTime = microtime(true);
//echo '';
?>
Article Sources