HEX
Server: LiteSpeed
System: Linux onyx.7ho.st 5.14.0-611.13.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 11 04:57:59 EST 2025 x86_64
User: atiscoir (1242)
PHP: 8.1.34
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/atiscoir/public_html/wp-content/themes/servin/inc/sticky/sticky.php
<?php

if ( ! defined( 'WPINC' ) ) {
	die();
}

if ( ! class_exists( 'TMT_Sticky' ) ) {

	class TMT_Sticky {

		private static $instance = null;

		public $assets;

		public function __construct() {
			add_action( 'init', array( $this, 'init' ), -999 );
		}

		public function init() {

			$this->load_files();

			// tmt_sticky_element_extension()->init();
			
			// do_action( 'tmt-sticky/init', $this );

		}

		public function load_files() {
			require wp_directory .'/inc/sticky/element-extension.php';
		}
		
		public static function get_instance() {
			if ( null == self::$instance ) {
				self::$instance = new self;
			}
			return self::$instance;
		}
	}
}

TMT_Sticky::get_instance();