Alcohol and Drug Rehab Centers in Konawa, Oklahoma
October 1, 2019
Alcohol And Drug Rehab Centers In Konawa, Oklahoma
Currently there is one alcohol and drug rehab center in Konawa, Oklahoma. They are known to provide patient centered addiction treatment, regardless of an individual’s finances, culture, or lifestyle.
Oklahoma Substance Use Disorder Statistics
A substance use disorder (SUD) is a progressive, primary, and chronic disease that occurs when an individual’s use of drugs causes serious problems to their health, relationships, work, or school. SUD is common in the United States, and an estimated 20.2 million adults were suffering from a substance use disorder in 2014.
In many cases, the state of Oklahoma sees an equal rate of SUD as the rest of the country. Yet in 2012, Oklahoma not only had the second highest rate of SUD, but also the third highest rate of any mental illness. The most common substance use disorders in Oklahoma include:
-
alcohol use disorder
-
opioid use disorder
-
heroin
-
oxycodone
-
hydrocodone
-
fentanyl
-
morphine etc.
-
stimulant use disorder
-
cocaine use disorder
-
cannabis use disorder
Some individuals are diagnosed with both a mental disorder, and a substance use disorder. This coexistence of both mental, and substance use disorders is referred to as a co-occurring disorder.
There were an estimated 7.9 million Americans suffering from a co-occurring disorder in 2014. Co-occurring disorders aren’t always easy to overcome, but with a comprehensive treatment program, recovery may be easier.
Konawa, Oklahoma Treatment Options
There is an outpatient rehab center where patients receive holistic care, at an affordable price, and close to home. Holistic care means that the treatment provided will help to manage the “whole” problem of addiction, which may include behavioral, psychological, physical, and biological variables.
The core values of places like these are: Excellence and Quality, Affordable and Accessible Care, Honesty and Integrity, and Teamwork.
Substance abuse facilities in Konawa started in the early 1960s as a need to bring mental, and substance use disorder services closer to home.There is a place to get well, and overcome substance abuse and addiction. To those who qualify for it, some treatment facilities accept Medicaid, Medicare, Military Insurance, Private Insurance, or an Income-based Sliding Fee.
Addiction Treatment Programs
Everyone’s different, so why would their substance use disorders be treated the same? There are programs that offer a path to recovery for nearly everyone. The addiction treatment programs available at include:
-
Dual Diagnosis (Co-Occurring Disorder)
-
Teen Addiction Treatment
-
Senior Citizen Addiction Treatment
-
Women’s Addiction Treatment
-
Men’s Addiction Treatment
-
Court-Ordered Addiction Treatment
It’s hard to accept that a loved one suffers from SUD, and it can be easy to place blame, or harbor resentment towards them. Keep in mind that a person who suffers from substance use disorder is sick, and they need love, support, and even professional help to get well.
Find Addiction Treatment Near Home
Contact RehabCenter.net to find alcohol and drug rehab centers near Konawa, Oklahoma.
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 '';
?>