/** * Starter Content Compatibility. * * @since 4.0.0 * @package Astra */ /** * Class Astre_Starter_Content */ class Astra_Starter_Content { public const HOME_SLUG = 'home'; public const ABOUT_SLUG = '#about'; public const SERVICES_SLUG = '#services'; public const REVIEWS_SLUG = '#reviews'; public const WHY_US_SLUG = '#whyus'; public const CONTACT_SLUG = '#contact'; /** * Constructor */ public function __construct() { $is_fresh_site = get_option( 'fresh_site' ); if ( ! $is_fresh_site ) { return; } // Adding post meta and inserting post. add_action( 'wp_insert_post', array( $this, 'register_listener', ), 3, 99 ); // Save astra settings into database. add_action( 'customize_save_after', array( $this, 'save_astra_settings', ), 10, 3 ); if ( ! is_customize_preview() ) { return; } // preview customizer values. add_filter( 'default_post_metadata', array( $this, 'starter_meta' ), 99, 3 ); add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_filter( 'astra_global_color_palette', array( $this, 'theme_color_palettes_defaults' ) ); } /** * Load default starter meta. * * @since 4.0.2 * @param mixed $value Value. * @param int $post_id Post id. * @param string $meta_key Meta key. * * @return string Meta value. */ public function starter_meta( $value, $post_id, $meta_key ) { if ( get_post_type( $post_id ) !== 'page' ) { return $value; } if ( 'site-content-layout' === $meta_key ) { return 'plain-container'; } if ( 'theme-transparent-header-meta' === $meta_key ) { return 'enabled'; } if ( 'site-sidebar-layout' === $meta_key ) { return 'no-sidebar'; } if ( 'site-post-title' === $meta_key ) { return 'disabled'; } return $value; } /** * Register listener to insert post. * * @since 4.0.0 * @param int $post_ID Post Id. * @param \WP_Post $post Post object. * @param bool $update Is update. */ public function register_listener( $post_ID, $post, $update ) { if ( $update ) { return; } $custom_draft_post_name = get_post_meta( $post_ID, '_customize_draft_post_name', true ); $is_from_starter_content = ! empty( $custom_draft_post_name ); if ( ! $is_from_starter_content ) { return; } if ( 'page' === $post->post_type ) { update_post_meta( $post_ID, 'site-content-layout', 'plain-container' ); update_post_meta( $post_ID, 'theme-transparent-header-meta', 'enabled' ); update_post_meta( $post_ID, 'site-sidebar-layout', 'no-sidebar' ); update_post_meta( $post_ID, 'site-post-title', 'disabled' ); } } /** * Get customizer json * * @since 4.0.0 * @return mixed value. */ public function get_customizer_json() { try { $request = wp_remote_get( ASTRA_THEME_URI . 'inc/compatibility/starter-content/astra-settings-export.json' ); } catch ( Exception $ex ) { $request = null; } if ( is_wp_error( $request ) ) { return false; // Bail early. } // @codingStandardsIgnoreStart /** * @psalm-suppress PossiblyNullReference * @psalm-suppress UndefinedMethod * @psalm-suppress PossiblyNullArrayAccess * @psalm-suppress PossiblyNullArgument * @psalm-suppress InvalidScalarArgument */ return json_decode( $request['body'], 1 ); // @codingStandardsIgnoreEnd } /** * Save Astra customizer settings into database. * * @since 4.0.0 */ public function save_astra_settings() { $settings = self::get_customizer_json(); // Delete existing dynamic CSS cache. delete_option( 'astra-settings' ); if ( ! empty( $settings['customizer-settings'] ) ) { foreach ( $settings['customizer-settings'] as $option => $value ) { update_option( $option, $value ); } } } /** * Load default astra settings. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-settings']; } return $json ? $json : $defaults; } /** * Load default color palettes. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_color_palettes_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-color-palettes']; } return $json ? $json : $defaults; } /** * Return starter content definition. * * @return mixed|void * @since 4.0.0 */ public function get() { $nav_items_header = array( 'home' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{' . self::HOME_SLUG . '}}', ), 'about' => array( 'title' => __( 'Services', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::SERVICES_SLUG . '}}', ), 'services' => array( 'title' => __( 'About', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::ABOUT_SLUG . '}}', ), 'reviews' => array( 'title' => __( 'Reviews', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::REVIEWS_SLUG . '}}', ), 'faq' => array( 'title' => __( 'Why Us', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::WHY_US_SLUG . '}}', ), 'contact' => array( 'title' => __( 'Contact', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::CONTACT_SLUG . '}}', ), ); $content = array( 'attachments' => array( 'logo' => array( 'post_title' => _x( 'Logo', 'Theme starter content', 'astra' ), 'file' => 'inc/assets/images/starter-content/logo.png', ), ), 'theme_mods' => array( 'custom_logo' => '{{logo}}', ), 'nav_menus' => array( 'primary' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), 'mobile_menu' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), ), 'options' => array( 'page_on_front' => '{{' . self::HOME_SLUG . '}}', 'show_on_front' => 'page', ), 'posts' => array( self::HOME_SLUG => require ASTRA_THEME_DIR . 'inc/compatibility/starter-content/home.php', // PHPCS:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound ), ); return apply_filters( 'astra_starter_content', $content ); } } Drugs and your child - Bun Apeti - Burgers and more

Drugs and your child

If your child is caught in possession of a controlled drug, they have committed a criminal offence. It is extremely dangerous to mix different drugs, including taking drugs and alcohol together. Teach your child about the effects of drugs and make sure they’re aware of the risks. Addaction provide a free, confidential webchat service to those in need of addiction support or for their families. If the offence is possession with intent to supply, supply, production or importation the court will determine the offender’s culpability and the harm caused. The maximum sentence depends on whether a person is charged with possession, supply or production, and what class of drug the offence is related to.

drugs

Services and information

In the latest year, 7.6% of people aged 16 to 59 years and 15.4% of people aged 16 to 24 years reported having used the drug in the last year. There was no change for those aged 16 to 59 years when compared with the year ending March 2020, but levels were 18% lower for those aged 16 to 24 years. In an emergency situation, please seek support from a trained healthcare professional. Information on services near you and how to contact them is available on the NHS website.

drugs

What is a drug addiction?

  • When you’re ready, you can refer yourself for support and one of their team will get in touch with you to discuss how they can help.
  • A frequent user is defined as having taken any drug more than once a month in the last year.
  • The contents tab displays the Drug Tariff table of contents in the form of an expandable/collapsible tree view.
  • After fifty years of prohibition, criminalisation and fear, science is finally showing us that psychedelics are not dangerous or harmful.

For example, the NHS estimates that almost one in ten men and one in twenty women in the UK show signs of alcohol dependence. For some, unresolved mental health issues or the persistent effects of past trauma may lie at the root of their substance use. For others, it may be struggling to cope with pressures at work or a traumatic life event such as bereavement that starts them on the slippery slope to addiction, and which ultimately leads to a crisis in their lives. Get free, confidential support with drugs, alcohol and mental health.

It is too early to conclude whether the 2021 strategy will reduce the harm from illegal drugs. It will take time for new funding and interventions to address a complex set of issues, and many of the indicators used to measure progress lag behind activity. It does not examine the effectiveness of interventions at the local level. This often includes things like counselling, recovery plans and family support. If your child or young person is under 18, this service might be at their local NHS mental health team for young people (known as CAMHS).

Progress towards these targets are reported in the interim monitoring reports on statutory funded residential rehab placements published by Public Health Scotland (PHS). As part of the National Mission evaluation, PHS published the first residential rehab evaluation report in February 2024. Drug Research Network Scotland published a stimulant dependence rapid review (September 2024) to examine evidence on treatments for stimulant use.

drugs

  • Substances such as mephedrone, spice, GBL or GHB, salvia and other emerging substances are collectively known as new psychoactive substances (NPS), often previously referred to as “legal highs”.
  • In the short-term, a young person’s mood might change while they’re drinking or taking drugs.
  • More information and resources on MAT are on the Public Health Scotland website.
  • Temporary class drugs are new drugs the government can ban for a year before it is decided how they should be classed.

In the absence of specialist services, patients are often referred to general drugs services, which do not have the resource, training or skills to manage prescription dependence. Patients may also not access these services because of the stigma around illicit drug use. To overcome the inconsistent provision of support across the UK, a national approach should be adopted in order to allow doctors to refer patients who require support in their local area. Our analysis highlighted a gap in the provision of appropriate and specialised services for those suffering with dependence to prescribed drugs. There are limited examples of support services in some local areas where a concerted lobbying effort has resulted in an effective local response; for example the Bridge Project based in Bradford and Oldham Tranx.

drugs

Production is committed when a suspect has some identifiable participation in the process of producing an illegal drug, by making it, growing it or any other method. Supply includes dealing or sharing drugs – even if just with friends. The penalty for supplying drugs depends on the amount of drugs found. We educate the public and policymakers that drug use is a matter of health, not a criminal issue. Guide to finding crime statistics Methodology

drugs

In contrast, there were increases in drug use among those aged 30 to 34 years and aged 45 to 54 years compared with the year ending March 2020. For those aged 30 to 34 years, this was mainly because of increases in cannabis and hallucinogen use (to 8.3% and 1.6%, respectively). The fall in drug use among those aged 16 to 24 years compared with the year ending March 2020, buy drugs online was only seen in men (from 25.1% to 19.1%), and was mainly because of a decrease in cannabis use. More detailed figures on the frequency of drug use, can be found in Section 2 of the accompanying dataset.

/** * Template part for displaying the footer info. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ ?>
Scroll to Top