['method' => 'get_html', 'casting' => 'HTMLFragment'], 'SSViewerTest_GlobalHTMLEscaped' => ['method' => 'get_html'], 'SSViewerTest_GlobalAutomatic', 'SSViewerTest_GlobalReferencedByString' => 'get_reference', 'SSViewerTest_GlobalReferencedInArray' => ['method' => 'get_reference'], 'SSViewerTest_GlobalThatTakesArguments' => ['method' => 'get_argmix', 'casting' => 'HTMLFragment'] ]; } public static function get_html() { return '
'; } public static function SSViewerTest_GlobalAutomatic() { return 'automatic'; } public static function get_reference() { return 'reference'; } public static function get_argmix() { $args = func_get_args(); return 'z' . implode(':', $args) . 'z'; } }