| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/plugins/cornerstone/includes/integration/Twig/src/ |
Upload File : |
<?php
use Cornerstone\TwigIntegration\Renderer;
use const Cornerstone\TwigIntegration\TWIG_TEMPLATES;
/**
* Templates grabber from both theme options and directory templates
*
* @return array
*/
function cs_twig_templates() {
$templates = cs_stack_get_value(TWIG_TEMPLATES, []);
$templates = apply_filters(TWIG_TEMPLATES, $templates);
return $templates;
}
/**
* Get directories to search for templates in twig
* Uses filter 'cs_twig_directory_templates'
*
* @return array
*/
function cs_twig_directory_templates() {
return apply_filters('cs_twig_directory_templates', []);
}
/**
* Twig cache directory
* uses filter 'cs_twig_cache_directory'
* Defaults to WordPress temp directory + cornerstone/twig
*
* @return string
*/
function cs_twig_cache_directory() {
return Renderer::getCacheDirectory();
}
/**
* Render a twig string
*
* @param string
*
* @return string
*/
function cs_twig_render($str) {
return Renderer::render($str);
}
/**
* Get twig instance environment
*
* @return Twig\Environment
*/
function cs_twig_environment() {
return Renderer::twigInstance();
}