| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/aecm.ihu.gr/wp-content/plugins/apus-simple-event/inc/ |
Upload File : |
<?php
/**
* template loader
*
* @package apus-simple-event
* @author ApusTheme <apusthemes@gmail.com >
* @license GNU General Public License, version 3
* @copyright 13/06/2016 ApusTheme
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class ApusSimpleEvent_Template_Loader {
/**
* Initialize template loader
*
* @access public
* @return void
*/
public static function init() {
add_filter( 'template_include', array( __CLASS__, 'templates' ) );
}
/**
* Default templates
*
* @access public
* @param $template
* @return string
* @throws Exception
*/
public static function templates( $template ) {
$post_type = get_post_type(); //echo $post_type ;die;
$custom_post_types = array( 'simple_event' );
if ( in_array( $post_type, $custom_post_types ) ) {
if ( is_archive() ) {
return self::locate( 'archive-' . $post_type );
}
if ( is_single() ) {
return self::locate( 'single-' . $post_type );
}
}
return $template;
}
/**
* Gets template path
*
* @access public
* @param $name
* @param $plugin_dir
* @return string
* @throws Exception
*/
public static function locate( $name, $plugin_dir = APUSSIMPLEEVENT_PLUGIN_DIR ) {
$template = '';
// Current theme base dir
if ( ! empty( $name ) ) {
$template = locate_template( "{$name}.php" );
}
$theme_folder_name = apply_filters('apus-simple-event-theme-folder-name', 'apus-simple-event');
// Child theme
if ( ! $template && ! empty( $name ) && file_exists( get_stylesheet_directory() . "/".$theme_folder_name."/{$name}.php" ) ) {
$template = get_stylesheet_directory() . "/".$theme_folder_name."/{$name}.php";
}
// Original theme
if ( ! $template && ! empty( $name ) && file_exists( get_template_directory() . "/".$theme_folder_name."/{$name}.php" ) ) {
$template = get_template_directory() . "/".$theme_folder_name."/{$name}.php";
}
// Plugin
if ( ! $template && ! empty( $name ) && file_exists( $plugin_dir . "/templates/{$name}.php" ) ) {
$template = $plugin_dir . "/templates/{$name}.php";
}
// Nothing found
if ( empty( $template ) ) {
throw new Exception( "Template /templates/{$name}.php in plugin dir {$plugin_dir} not found." );
}
return $template;
}
/**
* Loads template content
*
* @param string $name
* @param array $args
* @param string $plugin_dir
* @return string
* @throws Exception
*/
public static function get_template_part( $name, $args = array(), $plugin_dir = APUSSIMPLEEVENT_PLUGIN_DIR ) {
if ( is_array( $args ) && count( $args ) > 0 ) {
extract( $args, EXTR_SKIP );
}
$path = self::locate( $name, $plugin_dir );
ob_start();
include $path;
$result = ob_get_contents();
ob_end_clean();
return $result;
}
}
ApusSimpleEvent_Template_Loader::init();