X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-wernis_portal.php;h=994bd8d72dcbd9190b0fe8cc396d45c0316c6945;hb=d3c4fdd9bfab35389e1a5ff48f3952d527c7b4bb;hp=a8be80d39f6f7b27d733b818be9f41c75e60dda6;hpb=b8c86fa12322603c24a88ea2b0fd3dbeba612752;p=mailer.git diff --git a/inc/modules/guest/what-wernis_portal.php b/inc/modules/guest/what-wernis_portal.php index a8be80d39f..994bd8d72d 100644 --- a/inc/modules/guest/what-wernis_portal.php +++ b/inc/modules/guest/what-wernis_portal.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -33,52 +38,52 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} elseif ((!EXT_IS_ACTIVE("wernis")) && (!IS_ADMIN())) { - addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "wernis"); - return; -} + die(); +} // END - if // Special file -LOAD_INC_ONCE("inc/rdf.class.php"); +loadIncludeOnce('inc/classes/rdf.class.php'); // Add description as navigation point -ADD_DESCR("guest", __FILE__); +addMenuDescription('guest', __FILE__); + +if ((!isExtensionActive('wernis')) && (!isAdmin())) { + loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('wernis')); + return; +} // END - if -OUTPUT_HTML("
"); +outputHtml('
'); $rdf = new fase4_rdf(); $rdf->use_dynamic_display(false); -$rdf->set_CacheDir(constant('PATH')."inc/cache/"); -$rdf->set_salt(md5(SITE_KEY)); +$rdf->set_CacheDir(getConfig('CACHE_PATH') . ''); +$rdf->set_salt(md5(getConfig('SITE_KEY'))); $rdf->set_max_item(10); $rdf->set_Options( array( - 'textinput' => "hidden", - 'sitelink' => "http://www.wds66.com", + 'textinput' => 'hidden', + 'sitelink' => 'http://www.wds66.com', 'refid' => getConfig('wernis_refid'), - 'reflink' => "/ref.php?refid=", + 'reflink' => '/ref.php?refid=', ) ); // Use proxy? -if ((getConfig('proxy_host') != "") && (getConfig('proxy_port') > 0)) { +if ((getConfig('proxy_host') != '') && (getConfig('proxy_port') > 0)) { // Set proxy data $rdf->set_proxy(getConfig('proxy_host'), getConfig('proxy_port')); // Use auth? - if (getConfig('proxy_username') != "") { + if (getConfig('proxy_username') != '') { // Set auth data $rdf->set_proxy_auth(getConfig('proxy_username'), getConfig('proxy_password')); } // END - if } // END - if -$rdf->parse_RDF("http://www.wds66.com/rss.xml"); +$rdf->parse_RDF('http://www.wds66.com/rss.xml'); -// Fix to avoid "headers already sent" bug. Thanks to Profi-Concept -OUTPUT_HTML($rdf->finish(true)); -// @TODO Can this be removed? $rdf->clear_cache(); -OUTPUT_HTML("
"); +// Fix to avoid 'headers already sent' bug. Thanks to Profi-Concept +outputHtml($rdf->finish(true)); +outputHtml('
'); -// +// [EOF] ?>