HEX
Server: LiteSpeed
System: Linux 112.webhostingindonesia.co.id 5.14.0-570.62.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 10:10:59 EST 2025 x86_64
User: iyfwylsv (10313)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/ultimate-maps-by-supsystic/classes/helper.php
<?php
/**
 * Abstract class of module helper
 * Module helper has all the functions that are needed in module workflow
 * Besides it contains the methods to build html elements
 */
abstract class helperUms {
	protected $_code = '';
	protected $_module = '';
	/**
	 * Construct helper class
	 * @param string $code 
	 */
	public function __construct($code) {
		$this->setCode($code);
	}
	/**
	 * Init function
	 */
	public function init(){

	}
	/**
	 * Set the helper name
	 * @param string $code 
	 */
	public function setCode($code) {
		$this->_code = $code;
	}
	/**
	 * Get the helper name
	 * @return string 
	 */
	public function getCode() {
		return $this->_code;
	}
}