001 package railo.runtime.functions.dateTime; 002 003 import railo.commons.date.TimeZoneUtil; 004 import railo.runtime.PageContext; 005 import railo.runtime.ext.function.Function; 006 007 public class GetTimeZone implements Function{ 008 public static String call(PageContext pc) { 009 return TimeZoneUtil.toString(pc.getTimeZone()); 010 } 011 012 }