001 /** 002 * Implements the Cold Fusion Function gettemplatepath 003 */ 004 package railo.runtime.functions.system; 005 006 import railo.runtime.PageContext; 007 import railo.runtime.exp.PageException; 008 import railo.runtime.ext.function.Function; 009 010 public final class GetTemplatePath implements Function { 011 public static Object call(PageContext pc) throws PageException { 012 013 return pc.getTemplatePath(); 014 } 015 }