HEX
Server: LiteSpeed
System: Linux s12873.lon1.stableserver.net 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: jairicem (1242)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/jairicem/basalehglobal.ng/wp-content/themes/mitech/framework/class-tha.php
<?php
defined( 'ABSPATH' ) || exit;

/**
 * Theme Hook Alliance hook stub list.
 */

if ( ! class_exists( 'Mitech_THA' ) ) {

	class Mitech_THA {
		protected static $instance = null;

		static function instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		function body_top() {
			do_action( 'mitech_body_top' );
		}

		function body_bottom() {
			do_action( 'mitech_body_bottom' );
		}

		function head_top() {
			do_action( 'mitech_head_top' );
		}

		function head_bottom() {
			do_action( 'mitech_head_bottom' );
		}

		function header_wrap_top() {
			do_action( 'mitech_header_wrap_top' );
		}

		function header_wrap_bottom() {
			do_action( 'mitech_header_wrap_bottom' );
		}

		function header_right_top() {
			do_action( 'mitech_header_right_top' );
		}

		function header_right_bottom() {
			do_action( 'mitech_header_right_bottom' );
		}

		function footer_before() {
			do_action( 'mitech_footer_before' );
		}

		function footer_after() {
			do_action( 'mitech_footer_after' );
		}
	}

}