Esempio n. 1
0
 /**
  * Called immediately after creating an environment.
  * Override this function to customize initialization, calling {@link
  * _apply_european_settings()} or {@link _apply_iso_settings()} if desired.
  *
  * A call to {@link ENVIRONMENT::set_buffered()} enables buffering for the
  * page until it is completely rendered on the server. For larger pages, this
  * means a longer delay on slow connections before data begins arriving. This
  * is also automatically enabled when using {@link
  * REDIRECT_EXCEPTION_HANDLER}.
  *
  * @see _make_environment()
  * @param ENVIRONMENT $env
  * @access private
  */
 protected function _init_environment($env)
 {
     $env->title = 'WebCore';
     $env->set_buffered();
 }