Newer
Older
GpsTracker / servers / wordpress / gps-tracker / includes / class-gpstracker-template-loader.php
@Nick Fox Nick Fox on 29 Sep 2015 1 KB added multi-user wordpress plugin
<?php
/**
 * Handles loading locating and loading template files, extends GpsTracker_Gamajo_Template_Loader class
 *
 * @package   Gps_Tracker
 * @subpackage Classes/GpsTracker Template Loader
 * @author    Nick Fox <nickfox@websmithing.com>
 * @license   MIT/GPLv2 or later
 * @link      https://www.websmithing.com/gps-tracker
 * @copyright 2014 Nick Fox
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;

/**
 * GpsTracker_Template_Loader Class
 *
 * @since 1.0.0
 */
class GpsTracker_Template_Loader extends GpsTracker_Gamajo_Template_Loader {

	/**
	 * Prefix for filter names.
	 *
	 * @since 1.0.0
	 * @type string
	 */
	protected $filter_prefix = 'gpstracker';

	/**
	 * Directory name where custom templates for this plugin should be found in the theme.
	 *
	 * @since 1.0.0
	 * @type string
	 */
	protected $theme_template_directory = 'templates';

	/**
	 * Reference to the root directory path of this plugin.
	 *
	 * @since 1.0.0
	 * @type string
	 */
	protected $plugin_directory = GPSTRACKER_PLUGIN_DIR;

}