HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/cwd/wp-content/plugins/cornerstone/includes/integration/Twig/src/api.php
<?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();
}