Path prependPath = lookup(prepend);
if (prependPath == null)
error(L.l("auto_prepend_file '{0}' not found.", prepend));
else {
QuercusPage prependPage = _quercus.parse(prependPath);
prependPage.executeTop(this);
}
}
executeTop();
StringValue append
= _quercus.getIniValue("auto_append_file").toStringValue(this);
if (append.length() > 0) {
Path appendPath = lookup(append);
if (appendPath == null)
error(L.l("auto_append_file '{0}' not found.", append));
else {
QuercusPage appendPage = getQuercus().parse(appendPath);
appendPage.executeTop(this);
}
}
}