<?php /** * Template Loader for Plugins. Changed name from Gamajo_Template_Loader to GpsTracker_Gamajo_Template_Loader * to avoid namespace clashes with other plugins * * @package GpsTracker_Gamajo_Template_Loader * @author Gary Jones * @link http://github.com/GaryJones/Gamajo-Template-Loader * @copyright 2013 Gary Jones * @license MIT/GPLv2 or later */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * Template loader. * * Originally based on functions in Easy Digital Downloads (thanks Pippin!). * * When using in a plugin, create a new class that extends this one and just overrides the properties. * * @package GpsTracker_Gamajo_Template_Loader * @author Gary Jones */ class GpsTracker_Gamajo_Template_Loader { /** * Prefix for filter names. * * @since 1.0.0 * @type string */ protected $filter_prefix = 'your_plugin'; /** * Directory name where custom templates for this plugin should be found in the theme. * * @since 1.0.0 * @type string */ protected $theme_template_directory = 'your-plugin'; // or 'your-plugin-templates' etc. /** * Reference to the root directory path of this plugin. * * Can either be a defined constant, or a relative reference from where the subclass lives. * * @since 1.0.0 * @type string */ protected $plugin_directory = YOUR_PLUGIN_DIR; // or plugin_dir_path( dirname( __FILE__ ) ); etc. /** * Retrieve a template part. * * @since 1.0.0 * * @uses GpsTracker_Gamajo_Template_Loader::get_template_possble_parts() Create file names of templates. * @uses GpsTracker_Gamajo_Template_Loader::locate_template() Retrieve the name of the highest priority template * file that exists. * * @param string $slug * @param string $name Optional. Default null. * @param bool $load Optional. Default true. * * @return string */ public function get_template_part( $slug, $name = null, $load = true ) { // Execute code for this part do_action( 'get_template_part_' . $slug, $slug, $name ); // Get files names of templates, for given slug and name. $templates = $this->get_template_file_names( $slug, $name ); // Return the part that is found return $this->locate_template( $templates, $load, false ); } /** * Given a slug and optional name, create the file names of templates. * * @since 1.0.0 * * @param string $slug * @param string $name * * @return array */ protected function get_template_file_names( $slug, $name ) { if ( isset( $name ) ) { $templates[] = $slug . '-' . $name . '.php'; } $templates[] = $slug . '.php'; /** * Allow template choices to be filtered. * * The resulting array should be in the order of most specific first, to least specific last. * e.g. 0 => recipe-instructions.php, 1 => recipe.php * * @since 1.0.0 * * @param array $templates Names of template files that should be looked for, for given slug and name. * @param string $slug Template slug. * @param string $name Template name. */ return apply_filters( $this->filter_prefix . '_get_template_part', $templates, $slug, $name ); } /** * Retrieve the name of the highest priority template file that exists. * * Searches in the STYLESHEETPATH before TEMPLATEPATH so that themes which * inherit from a parent theme can just overload one file. If the template is * not found in either of those, it looks in the theme-compat folder last. * * @since 1.0.0 * * @uses GpsTracker_Gamajo_Tech_Loader::get_template_paths() Return a list of paths to check for template locations. * * @param string|array $template_names Template file(s) to search for, in order. * @param bool $load If true the template file will be loaded if it is found. * @param bool $require_once Whether to require_once or require. Default true. * Has no effect if $load is false. * * @return string The template filename if one is located. */ protected function locate_template( $template_names, $load = false, $require_once = true ) { // No file found yet $located = false; // Remove empty entries $template_names = array_filter( (array) $template_names ); // Try to find a template file foreach ( $template_names as $template_name ) { // Trim off any slashes from the template name $template_name = ltrim( $template_name, '/' ); // Try locating this template file by looping through the template paths foreach ( $this->get_template_paths() as $template_path ) { if ( file_exists( $template_path . $template_name ) ) { $located = $template_path . $template_name; break; } } } if ( $load && $located ) { load_template( $located, $require_once ); } return $located; } /** * Return a list of paths to check for template locations. * * Default is to check in a child theme (if relevant) before a parent theme, so that themes which inherit from a * parent theme can just overload one file. If the template is not found in either of those, it looks in the * theme-compat folder last. * * @since 1.0.0 * * @return mixed|void */ protected function get_template_paths() { $theme_directory = trailingslashit( $this->theme_template_directory ); $file_paths = array( 10 => trailingslashit( get_template_directory() ) . $theme_directory, 100 => $this->get_templates_dir() ); // Only add this conditionally, so non-child themes don't redundantly check active theme twice. if ( is_child_theme() ) { $file_paths[1] = trailingslashit( get_stylesheet_directory() ) . $theme_directory; } /** * Allow ordered list of template paths to be amended. * * @since 1.0.0 * * @param array $var Default is directory in child theme at index 1, parent theme at 10, and plugin at 100. */ $file_paths = apply_filters( $this->filter_prefix . '_template_paths', $file_paths ); // sort the file paths based on priority ksort( $file_paths, SORT_NUMERIC ); return array_map( 'trailingslashit', $file_paths ); } /** * Return the path to the templates directory in this plugin. * * May be overridden in subclass. * * @since 1.0.0 * * @return string */ protected function get_templates_dir() { return $this->plugin_directory . 'templates'; } }