array('method' => 'get_html', 'casting' => 'HTMLFragment'), 'SSViewerTest_GlobalHTMLEscaped' => array('method' => 'get_html'), 'SSViewerTest_GlobalAutomatic', 'SSViewerTest_GlobalReferencedByString' => 'get_reference', 'SSViewerTest_GlobalReferencedInArray' => array('method' => 'get_reference'), 'SSViewerTest_GlobalThatTakesArguments' => array('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'; } }