Last active
July 20, 2016 12:46
-
-
Save goldsky/60862e232c050feaca39 to your computer and use it in GitHub Desktop.
includeFile snippet is to include any file in MODX's page, either in resource, template, or chunk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* includeFile snippet is to include any file in MODX's page, either in resource, template, or chunk | |
* | |
* @author goldsky <[email protected]> | |
* @copyright Copyright (c) 2015, goldsky | |
* @example [[!includeFile? &file=`[[++core_path]]statics/chunks/mychunk.chunk.tpl`]] | |
* [[!includeFile? &file=`[[++core_path]]statics/snippets/mysnippet.snippet.php`]] | |
* | |
* Adding "&toPlaceholder" parameter ... | |
* [[!includeFile? | |
* &file=`[[++core_path]]statics/chunks/mychunk.chunk.tpl` | |
* &toPlaceholder=`my_placeholder` | |
* ]] | |
* ... creates [[+my_placeholder]] for multiple calls in the page | |
*/ | |
if (!isset($file) || $file == "") { | |
$modx->log(modX::LOG_LEVEL_ERROR, "[includeFile] File was not defined!"); | |
return; | |
} | |
if (!file_exists($file)) { | |
$modx->log(modX::LOG_LEVEL_ERROR, "[includeFile] could not find file: " . $file); | |
return; | |
} | |
$pathinfo = pathinfo($file); | |
if ($pathinfo['extension'] === 'php') { | |
$content = include $file; | |
} else { | |
ob_start(); | |
include $file; | |
$content = ob_get_contents(); | |
ob_end_clean(); | |
} | |
if ($toPlaceholder) { | |
$modx->setPlaceholder($toPlaceholder, $content); | |
return; | |
} | |
return $content; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment