C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\netspot\includes\frontend.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?php
/**
* @version $Id: frontend.php,v 1.14 2005/02/15 19:23:22 eddieajau Exp $
* @package Mambo
* @copyright (C) 2000 - 2005 Miro International Pty Ltd
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* Mambo is Free Software
*/

defined'_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
/**
* Displays the capture output of the main element
*/
function mosMainBody() {
    
// message passed via the url
    
$mosmsg mosGetParam$_REQUEST'mosmsg''' );
    if (!
get_magic_quotes_gpc()) {
        
$mosmsg addslashes$mosmsg );
    }

    
$popMessages false;

    if (
$mosmsg && !$popMessages) {
        echo 
"\n<div class=\"message\">$mosmsg</div>";
    }

    echo 
$GLOBALS['_MOS_OPTION']['buffer'];

    if (
$mosmsg && $popMessages) {
        echo 
"\n<script language=\"javascript\">alert('$mosmsg');</script>";
    }
}
/**
* Utility functions and classes
*/
function mosLoadComponent$name ) {
    
// set up some global variables for use by the frontend component
    
global $mainframe$database;
    include( 
$mainframe->getCfg'absolute_path' )."/components/com_$name/$name.php" );
}
/**
* Cache some modules information
* @return array
*/
function &initModules() {
    global 
$database$my$Itemid;

    if (!isset( 
$GLOBALS['_MOS_MODULES'] )) {
        
$query "SELECT id, title, module, position, content, showtitle, params"
        
."\nFROM #__modules AS m, #__modules_menu AS mm"
        
"\nWHERE m.published='1' AND m.access <= '$my->gid' AND m.client_id='0'"
        
"\nAND mm.moduleid=m.id"
        
"\nAND (mm.menuid = '$Itemid' OR mm.menuid = '0')"
        
"\nORDER BY ordering";

        
$database->setQuery$query );
        
$modules $database->loadObjectList();
        foreach (
$modules as $module) {
            
$GLOBALS['_MOS_MODULES'][$module->position][] = $module;
        }
    }
    return 
$GLOBALS['_MOS_MODULES'];
}
/**
* @param string THe template position
*/
function mosCountModules$position='left' ) {
    global 
$database$my$Itemid;
    
$modules =& initModules();
    if (isset( 
$GLOBALS['_MOS_MODULES'][$position] )) {
        return 
count$GLOBALS['_MOS_MODULES'][$position] );
    } else {
        return 
0;
    }
}
/**
* @param string The position
* @param int The style.  0=normal, 1=horiz, -1=no wrapper
*/
function mosLoadModules$position='left'$style=) {
    global 
$mosConfig_gzip$mosConfig_absolute_path$database$my$Itemid$mosConfig_caching;

    
$tp mosGetParam$_GET'tp');
    if (
$tp) {
        echo 
'<div style="height:50px;background-color:#eee;margin:2px;padding:10px;border:1px solid #f00;color:#700;">';
        echo 
$position;
        echo 
'</div>';
        return;
    }
    
$style intval$style );
    
$cache =& mosCache::getCache'com_content' );

    require_once( 
$mosConfig_absolute_path '/includes/frontend.html.php' );

    
$allModules =& initModules();
    if (isset( 
$GLOBALS['_MOS_MODULES'][$position] )) {
        
$modules $GLOBALS['_MOS_MODULES'][$position];
    } else {
        
$modules = array();
    }

    if (
count$modules ) < 1) {
        
$style 0;
    }
    if (
$style == 1) {
        echo 
"<table cellspacing=\"1\" cellpadding=\"0\" border=\"0\" width=\"100%\">\n";
        echo 
"<tr>\n";
    }
    
$prepend = ($style == 1) ? "<td valign=\"top\">\n" '';
    
$postpend = ($style == 1) ? "</td>\n" '';

    
$count 1;
    foreach (
$modules as $module) {
        
$params =& new mosParameters$module->params );

        echo 
$prepend;

        if ((
substr("$module->module",0,4))=="mod_") {
            if (
$params->get('cache') == && $mosConfig_caching == 1) {
                
$cache->call('modules_html::module2'$module$params$Itemid$style );
            } else {
                
modules_html::module2$module$params$Itemid$style$count );
            }
        } else {
            if (
$params->get('cache') == && $mosConfig_caching == 1) {
                
$cache->call('modules_html::module'$module$params$Itemid$style );
            } else {
                
modules_html::module$module$params$Itemid$style );
            }
        }

        echo 
$postpend;
        
$count++;
    }
    if (
$style == 1) {
        echo 
"</tr>\n</table>\n";
    }
}
/**
* Assembles head tags
*/
function mosShowHead() {
    global 
$database$option$my$mainframe$_VERSION;
    global 
$mosConfig_MetaDesc$mosConfig_MetaKeys$mosConfig_live_site$mosConfig_sef$mosConfig_absolute_path$mosConfig_sitename$mosConfig_favicon;

    
$task mosGetParam$_REQUEST'task''' );

    
$mainframe->appendMetaTag'description'$mosConfig_MetaDesc );
    
$mainframe->appendMetaTag'keywords'$mosConfig_MetaKeys );
    
$mainframe->addMetaTag'Generator'$_VERSION->PRODUCT " - " $_VERSION->COPYRIGHT);
    
$mainframe->addMetaTag'robots''index, follow' );

    echo 
$mainframe->getHead();

    if ( isset(
$mosConfig_sef) && $mosConfig_sef ) {
        echo 
"<base href=\"$mosConfig_live_site/\" />\r\n";
    }

    if ( 
$my->id ) { 
        
?>
        <script language="JavaScript1.2" src="<?php echo $mosConfig_live_site;?>/includes/js/mambojavascript.js" type="text/javascript"></script>
        <?php
    
}

    
// support for Firefox Live Bookmarks ability for site syndication
    
$query "SELECT a.id"
    
"\n FROM #__components AS a"
    
"\n WHERE a.name = 'Syndicate'"
    
;
    
$database->setQuery$query );
    
$id $database->loadResult();

    
// load the row from the db table
    
$row = new mosComponent$database );
    
$row->load$id );

    
// get params definitions
    
$params =& new mosParameters$row->params$mainframe->getPath'com_xml'$row->option ), 'component' );
    
    
$live_bookmark $params->get'live_bookmark');
    
    if ( 
$live_bookmark ) {
        
// custom bookmark file name
        
$bookmark_file $params->get'bookmark_file'$live_bookmark );

        
$link_file     $mosConfig_live_site .'/cache/'$bookmark_file;
        
$filename     $mosConfig_absolute_path .'/cache/'$bookmark_file;

        
$cache         $params->get'cache');
        
$cache_time $params->get'cache_time'3600 );
        
$title         $params->def'title'$mosConfig_sitename );
        
        
// checks to see if cache file exists, to determine whether to create a new one
        
if ( !file_exists$filename ) || ( ( time() - filemtime$filename ) ) > $cache_time ) ) {
            
$tempTask     $task;
            
$task        'live_bookmark';
            
            
// sets bookmark feed type
            
$_GET['feed'] = str_replace'.xml'''$live_bookmark );
            
            
// loads rss component to create bookmark file
            
require_once( $mosConfig_absolute_path .'/components/com_rss/rss.php' );
            
$task         $tempTask;
        }
    
        
// outputs link tag for page
        
?>
        <link rel="alternate" type="application/rss+xml" title="<?php echo $title?>" href="<?php echo $link_file?>" />
        <?php
    
}        
    
    
// favourites icon
    
if ( !$mosConfig_favicon ) {
        
$mosConfig_favicon 'favicon.ico';
    } 
    
$icon $mosConfig_absolute_path .'/images/'$mosConfig_favicon;
    
// checks to see if file exists
    
if ( !file_exists$icon ) ) {
        
$icon $mosConfig_live_site .'/images/favicon.ico';        
    } else {
        
$icon $mosConfig_live_site .'/images/' .$mosConfig_favicon;        
    }
    
    
// outputs link tag for page
    
?>
    <link rel="shortcut icon" href="<?php echo $icon;?>" />
    <?php
}
?>