['method' => 'get_html', 'casting' => 'HTMLFragment'], 'SSTemplateEngineTest_GlobalHTMLEscaped' => ['method' => 'get_html'], 'SSTemplateEngineTest_GlobalAutomatic', 'SSTemplateEngineTest_GlobalReferencedByString' => 'get_reference', 'SSTemplateEngineTest_GlobalReferencedInArray' => ['method' => 'get_reference'], 'SSTemplateEngineTest_GlobalThatTakesArguments' => ['method' => 'get_argmix', 'casting' => 'HTMLFragment'], 'SSTemplateEngineTest_GlobalReturnsNull' => 'getNull', ]; } public static function get_html() { return '
'; } public static function SSTemplateEngineTest_GlobalAutomatic() { return 'automatic'; } public static function get_reference() { return 'reference'; } public static function get_argmix() { $args = func_get_args(); return 'z' . implode(':', $args) . 'z'; } public static function getNull() { return null; } }