/home/smartonegroup/public_html/system/vendor/smarty/smarty/src/Compile/Tag/CaptureClose.php
<?php
/**
 * Smarty Internal Plugin Compile Capture
 * Compiles the {capture} tag
 *


 * @author     Uwe Tews
 */

namespace Smarty\Compile\Tag;

use Smarty\Compile\Base;

/**
 * Smarty Internal Plugin Compile Captureclose Class
 *


 */
class CaptureClose extends Base {

	/**
	 * Compiles code for the {/capture} tag
	 *
	 * @param array $args array with attributes from parser
	 * @param \Smarty\Compiler\Template $compiler compiler object
	 * @param null $parameter
	 *
	 * @return string compiled code
	 */
	public function compile($args, \Smarty\Compiler\Template $compiler, $parameter = [], $tag = null, $function = null): string
	{

		if (array_pop($compiler->_cache['capture_stack'])) {
			// pop the virtual {nocache} tag from the stack.
			$compiler->closeTag('nocache');
			$compiler->tag_nocache = true;
		}

		return "<?php \$_smarty_tpl->getSmarty()->getRuntime('Capture')->close(\$_smarty_tpl);?>";
	}
}