prometheus-apl.path
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. Function PrometheusAppLayer_PushPath( $path_element ) {
  3.    global $PHP_AUTO_LOAD_SEARCH_PATH;
  4.    global $PROMETHEUS_APP_BASE;
  5.    $PHP_AUTO_LOAD_SEARCH_PATH[] = 
  6.       $PROMETHEUS_APP_BASE . '/lib/' . $path_element;
  7. }
  8. /* You'll need to change this at some point */
  9. if ( !isset( $PROMETHEUS_APP_BASE ) ) {
  10. $PROMETHEUS_APP_BASE = './';
  11. }
  12. PrometheusAppLayer_PushPath( '/defines' );
  13. PrometheusAppLayer_PushPath( '/objects/Defaults' );
  14. ?>