Package com.dotcms.repackage.com.caucho.quercus.env

Examples of com.dotcms.repackage.com.caucho.quercus.env.Env.error()


        String prepend = env.getIniString("auto_prepend_file");
        if (prepend != null) {
          Path prependPath = env.lookup(env.createString(prepend));

          if (prependPath == null)
            env.error("auto_prepend_file '{0}' not found.", prepend);
          else {
            QuercusPage prependPage = php.parse(prependPath);
            prependPage.executeTop(env);
          }
        }
View Full Code Here


        String append = env.getIniString("auto_append_file");
        if (append != null) {
          Path appendPath = env.lookup(env.createString(append));

          if (appendPath == null)
            env.error("auto_append_file '{0}' not found.", append);
          else {
            QuercusPage appendPage = php.parse(appendPath);
            appendPage.executeTop(env);
          }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.