function pageTop($title = false, $endBreak = "true", $ratingItem = "") { global $this_page, $img_home, $quick_list_truncate, $img_random_play, $cms_mode, $random_play_amounts, $directory_level, $img_up_arrow, $header_drops, $genre_drop, $artist_drop, $album_drop, $quick_drop, $root_dir, $web_root, $song_drop, $audio_types, $video_types, $media_dir, $img_more, $img_random_play_dis, $url_seperator, $help_access, $jukebox, $jukebox_num, $disable_random, $jz_lang_file, $show_slimzora, $img_slim_pop, $allow_resample, $resampleRates, $default_random_type, $default_random_count, $display_previous, $echocloud, $display_recommended, $enable_requests, $enable_ratings, $enable_search, $enable_meta_search, $user_tracking_display, $user_tracking_admin_only, $site_title, $node, $jzUSER, $allow_filesystem_modify, $jukebox_display, $jbArr, $include_path; // Let's see if they wanted to pass a title if (!$title) { $title = $site_title; } // Let's setup our objects $root =& new jzMediaNode(); $display =& new jzDisplay(); $blocks = new jzBlocks(); ?> <table class="jz_header_table" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr class="jz_header_table_tr"> <td width="80" align="left" valign="top" class="jz_header_table_outer" > <table class="" width="80" cellpadding="0" style="padding:5px;" cellspacing="0" border="0"> <tr class="jz_header_table_tr"> <td width="80" align="left" valign="top" class="" > <nobr> <?php // Now let's make sure they can see this if ($jzUSER->getSetting("view") === true) { // Let's display the home icon $display->homeButton(); // Let's setup the link for the help docs IF they have access to it if ($help_access == $_SESSION['jz_access_level'] or $help_access == "all") { $item_url = $root_dir . '/docs/' . $jz_lang_file . '/index.html'; ?> <a href="<?php echo $item_url; ?> " onClick="openPopup(this, 500, 500, false, 'Help'); return false;" target="_blank"><?php echo $img_more; ?> </a> <?php } // Now let's show them the Slimzora popup if ($show_slimzora && $jzUSER->getSetting('view') !== false) { $display->popupLink("slimzora"); } } else { echo " "; } if (checkPermission($jzUSER, "play")) { echo ' '; $display->popupLink('plmanager'); } // Now let's see if they get the tools menu if ($_SESSION['jz_access_level'] == "admin") { global $skin, $jz_MenuItemLeft, $jz_MenuSplit, $jz_MenuItemHover, $jz_MainItemHover, $main_img_dir, $jz_MenuItem; //include_once($web_root. $root_dir. '/lib/menu/tools-menu.php'); } ?> </nobr> </td> </tr> </table> </td> <td width="100%" valign="top" class="jz_header_table_outer"> <table width="100%" class="jz_header_table" border="0" cellpadding="0" cellspacing="0" style="padding:5px;"> <tr class="jz_header_table_tr"> <td width="50%" valign="top" class="jz_header_table_td"> <?php // Now let's set the header text if ($_SESSION['jz_access_level'] != "noaccess") { echo '<span class="jz_headerTitle">' . jzstripslashes($title) . '</span>'; } // Now let's show the rating if ($enable_ratings == "true" and $ratingItem != "") { echo " " . displayRating($ratingItem, false); } // Now let's make sure they deleted the "install" directory if (is_dir($include_path . "install") and !is_dir($include_path . "CVS")) { echo "<br><br><strong>"; echo word("You're Jinzora installation is NOT secure!!! You need to delete the 'install' directory to secure your installation!!! - Once you delete the 'install' directory this message will go away"); echo "</strong><br>"; } // Let's see if there is a file that we want to put in the header here //echo returnHeaderText(); ?> </td> <td width="50%" valign="top" class="jz_header_table_td" align="right"> <div align="right"> <?php $display->loginLink(); echo " | "; // Let's see if the user has logged in, and if not let's show that link if ($jzUSER->getSetting('admin') and $allow_filesystem_modify == "true") { $url_array = array(); $url_array['jz_path'] = $node->getPath("String"); $url_array['action'] = "popup"; $url_array['ptype'] = "uploadmedia"; echo '<a class="jz_header_table_href" onClick="openPopup(' . "'" . urlize($url_array) . "'" . ',450,400); return false;" href="javascript:;">' . word("Add Media") . '</a> | '; } if (false !== $display->popupLink("preferences", word("Preferences"))) { echo ' | '; } // Now let's show them the search box if ($_SESSION['jz_access_level'] != "noaccess" and $_SESSION['jz_access_level'] != "viewonly" and $_SESSION['jz_access_level'] != "lofi" and $enable_search != "false") { $url = array(); $url['action'] = 'powersearch'; echo "<a href=\"" . urlize($url) . "\" class=\"jz_header_table_href\">" . word("Search") . "</a>"; // Now let's see if there is a value for the box $value = ""; if (isset($_POST['search_query'])) { $value = $_POST['search_query']; } if (isset($_GET['song_title'])) { $value = $_GET['song_title']; } ?> <?php $onSubmit = ""; if ($jukebox == "true" && !defined('NO_AJAX_JUKEBOX')) { $onSubmit = 'onSubmit="return searchKeywords(this,\'' . htmlentities($this_page) . '\');"'; } if ($cms_mode == "true") { $method = "GET"; } else { $method = "POST"; } ?> <form action="<?php echo $this_page; ?> " method="<?php echo $method; ?> " name="searchForm" <?php echo $onSubmit; ?> > <?php foreach (getURLVars($this_page) as $key => $val) { echo '<input type="hidden" name="' . htmlentities($key) . '" value="' . htmlentities($value) . '">'; } ?> <input class="jz_input" type="text" name="search_query" size="15" value="<?php echo $value; ?> "> <select class="jz_select" name="search_type"> <option value="ALL">All Media</option> <?php if (distanceTo("artist") !== false) { echo '<option value="artists">' . word("Artists") . '</option>' . "\n"; } if (distanceTo("album") !== false) { echo '<option value="albums">' . word("Albums") . '</option>' . "\n"; } ?> <option value="tracks"><?php echo word("Tracks"); ?> </option> <option value="lyrics"><?php echo word("Lyrics"); ?> </option> </select> <input type="hidden" name="doSearch" value="true"> <input class="jz_submit" type="submit" name="doSearch" value="<?php echo word("Go"); ?> "> </form> </nobr> <?php } // Let's show them the up arrow, unless they are viewing the first page ?> <table width="100%" cellpadding="0"><tr><td width="100%" align="right"><div align="right"><nobr> <?php $bcrumbs = $blocks->breadCrumbs(); // Now let's display the header for the block $title = "Browse"; if ($node->getName() != "") { $parent = $node->getParent(); if ($parent->getName() != "") { $title .= " :: " . $parent->getName(); } $title .= " :: " . $node->getName(); } echo $bcrumbs; ?> </nobr></div></td></tr></table> <?php ?> </div> </td> </tr> </table> <?php // Now, do they want to display where the other users are? if ($user_tracking_display == "true") { // Now do they only want admins to see this? if ($user_tracking_admin_only == "true") { if ($_SESSION['jz_access_level'] == "admin") { displayUserTracking(); } } else { displayUserTracking(); } } ?> </td> </tr> <?php // Now let's see if they are in Jukebox mode, but are NOT an admin they can only stream if (checkPermission($jzUSER, "jukebox_queue") && $jukebox_display != "small" && $jukebox_display != "off") { jzTableClose(); echo '<div id="jukebox">' . "\n"; $blocks->jukeboxBlock(); echo '</div>', "\n"; jzTableOpen("100", "0", "jz_header_table"); } // Let's see if they wanted to turn the drop down boxes off if ($header_drops == "true") { ?> <tr class="jz_header_table_tr"> <td width="100%" align="right" valign="top" class="jz_header_table_outer" colspan="2" style="padding:5px;"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr class="jz_header_table_tr"> <?php if (checkPermission($jzUSER, "jukebox_queue") && ($jukebox_display == "small" or $jukebox_display == "minimal")) { ?> <td width="15%" valign="top" class="jz_header_table_td"><div id="smallJukebox"> <?php $blocks->smallJukebox(false, 'top'); ?> </div></td> <?php } // Let's make sure they wanted to see the Genre drop down if ($genre_drop != "false" && distanceTo("genre") !== false) { ?> <td width="15%" valign="top" class="jz_header_table_td"> <?php $display->popupLink("genre"); ?> <br> <?php if ($genre_drop == "true") { ?> <form action="<?php echo $this_page; ?> " method="GET"> <?php $display->hiddenPageVars(); $display->dropdown("genre"); ?> </form> <?php } ?> </td> <?php } // Let's see if they are looking at 2 levels or 3 and show them the artists select box if ($artist_drop != "false" && distanceTo("artist") !== false) { ?> <td width="15%" valign="top" class="jz_header_table_td"> <?php $display->popupLink("artist"); ?> <br><?php if ($artist_drop == "true") { ?> <form action="<?php echo $this_page; ?> " method="GET"> <?php $display->hiddenPageVars(); $display->dropdown("artist"); ?> </form> <?php } ?> </td> <?php } // Let's see if they are looking at 2 levels or 3 and show them the artists select box if ($album_drop != "false" && distanceTo("album") !== false) { ?> <td width="15%" valign="top" class="jz_header_table_td"> <?php $display->popupLink("album"); ?> <br><?php if ($album_drop == "true") { ?> <form action="<?php echo $this_page; ?> " method="GET"> <?php $display->hiddenPageVars(); $display->dropdown("album"); ?> </form><?php } ?> </td> <?php } if ($song_drop != "false") { ?> <td width="15%" valign="top" class="jz_header_table_td"> <?php $display->popupLink("track"); ?> <br><?php if ($song_drop == "true") { ?> <form action="<?php echo $this_page; ?> " method="GET"> <?php $display->hiddenPageVars(); $display->dropdown("track"); ?> </form><?php } ?> </td> <?php } // Now let's display the random playlist generator if ($quick_drop == "true" and $_SESSION['jz_access_level'] != "viewonly" and $_SESSION['jz_access_level'] != "lofi") { jzTDOpen("15", "left", "top", "jz_header_table_td", "0"); echo '<nobr>'; $blocks->randomGenerateSelector($node); echo '</nobr>'; jzTDClose(); } // Now let's display the resampler if ($display->wantResampleDropdown($node)) { jzTDOpen("10", "left", "top", "jz_header_table_td", "0"); $display->displayResampleDropdown($node); jzTDClose(); } jzTRClose(); // Now let's close out jzTableClose(); jzTDClose(); jzTRClose(); } // This closes our big table above jzTableClose(); }
$word_reports = str_replace("'", "", word_reports); ?> <script language="JavaScript" type="text/javascript"> var jzToolsMenu = [ [null,'<?php echo $word_tools; ?> ',null,null,'', <?php if (stristr($_SESSION['prev_page'], "?")) { $sep = "&"; } else { $sep = "?"; } $this_url = $_SESSION['prev_page'] . $sep . 'editmenu=addmedia&info=' . jzstripslashes(urlencode($genre) . "/" . urlencode($artist) . "/" . urlencode($album)); ?> ['<img src="<?php echo $image_dir; ?> /addmedia.gif" />','<?php echo word_add_media; ?> ','<?php echo $this_url; ?> ',null,''], ['<img src="<?php echo $image_dir; ?> /playlist.gif" />','<?php
?> ','<?php echo $dnl_url; ?> ',null,''], <?php } ?> <?php $share_url = ""; // Now let's see if they wanted to enable email sending if ($allow_send_email == "true") { // Now let's create the URL for the link to send via email $email_href = $this_site . $root_dir . '/playlists.php?emailalbum=' . base64_encode(jzstripslashes($genre . "/" . $artist . "/" . $album)); $share_url = 'mailto:?subject=' . $artistDispName . ' - ' . $albumDispName . '&body=Click to play ' . $artistDispName . ' - ' . $albumDispName . ':%0D%0A%0D%0A' . $email_href . '%0D%0A%0D%0APowered by Jinzora %0D%0AJinzora :: Free Your Media%0D%0Ahttp://www.jinzora.org'; ?> ['<img src="<?php echo $image_dir; ?> email.gif" />','<?php echo $word_share_via_email . " <em>" . $albumDispName . "</em>"; ?> ','<?php echo $share_url; ?> ',null,''], <?php } ?>