c60a8f3f8e03f5e7a4501009af91ebb7f924a81c
[mailer.git] / inc / modules / guest / what-wernis_portal.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/19/2003 *
4  * ================                             Last change: 10/19/2003 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-                                            *
8  * -------------------------------------------------------------------- *
9  * Short description :                                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  :                                                  *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif ((!EXT_IS_ACTIVE("wernis")) && (!IS_ADMIN())) {
39         addFatalMessage(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "wernis");
40         return;
41 }
42
43 // Special file
44 LOAD_INC_ONCE("inc/rdf.class.php");
45
46 // Add description as navigation point
47 ADD_DESCR("guest", __FILE__);
48
49 OUTPUT_HTML("<div style=\"padding-left: 10px; padding-right: 10px\">");
50 $rdf = new fase4_rdf();
51 $rdf->use_dynamic_display(false);
52 $rdf->set_CacheDir(constant('PATH')."inc/cache/");
53 $rdf->set_salt(md5(SITE_KEY));
54 $rdf->set_max_item(10);
55 $rdf->set_Options(
56         array(
57                 'textinput' => "hidden",
58                 'sitelink'  => "http://www.wds66.com",
59                 'refid'     => getConfig('wernis_refid'),
60                 'reflink'   => "/ref.php?refid=",
61         )
62 );
63
64 // Use proxy?
65 if ((getConfig('proxy_host') != "") && (getConfig('proxy_port') > 0)) {
66         // Set proxy data
67         $rdf->set_proxy(getConfig('proxy_host'), getConfig('proxy_port'));
68
69         // Use auth?
70         if (getConfig('proxy_username') != "") {
71                 // Set auth data
72                 $rdf->set_proxy_auth(getConfig('proxy_username'), getConfig('proxy_password'));
73         } // END  - if
74 } // END - if
75
76 $rdf->parse_RDF("http://www.wds66.com/rss.xml");
77 $rdf->finish();
78 // DISABLED: $rdf->clear_cache();
79 OUTPUT_HTML("</div>");
80
81 //
82 ?>