예제 #1
0
    function pageTop($node)
    {
        global $img_home, $jinzora_skin, $root_dir, $css, $this_page, $cms_mode, $jzUSER, $include_path, $desc_truncate, $image_size, $jinzora_url, $image_dir, $jukebox, $jzSERVICES, $jukebox_display, $cms_mode, $show_artist_alpha, $show_artist_list, $allow_resample;
        // Let's setup our objects
        $display = new jzDisplay();
        $blocks = new jzBlocks();
        $smarty = smartySetup();
        // Now let's make sure our Node is set and if not set one
        if (!is_object($node)) {
            $node = new jzMediaNode();
        }
        // Let's include the settings file
        include_once $include_path . 'frontend/frontends/mediacenter/settings.php';
        // Let's set some variables
        $smarty->assign('root_dir', $root_dir);
        // Ok, now let's include the first template
        $smarty->display(SMARTY_ROOT . 'templates/mediacenter/header.tpl');
        exit;
        $display->preHeader();
        $smarty->assign('this_page', $this_page);
        $smarty->assign('img_home', $img_home);
        $smarty->assign('cms_mode', $cms_mode);
        $smarty->assign('image_dir', $image_dir);
        $smarty->assign('jinzora_url', $jinzora_url);
        $smarty->display(SMARTY_ROOT . 'templates/mediacenter/header.tpl');
        // Now let's see if we should show the jukebox iframe
        $smarty->assign('jukebox_queue', false);
        if (checkPermission($jzUSER, "jukebox_queue")) {
            $smarty->assign('jukebox_queue', true);
            if ($jukebox_display == "small" or $jukebox_display == "minimal") {
                $smarty->assign('jukebox_display', "small");
            } else {
                $smarty->assign('jukebox_display', "full");
            }
        }
        $smarty->display(SMARTY_ROOT . 'templates/mediacenter/jukebox.tpl');
        // Let's show the news
        $siteNews = $blocks->siteNews($node);
        $smarty->assign('site_news', $siteNews);
        if ($siteNews != "") {
            $smarty->display(SMARTY_ROOT . 'templates/mediacenter/site-news.tpl');
        }
        // Now do we have art or image or desc at the album level
        if ($node->getPType() == "album") {
            if (($art = $node->getMainArt($image_size . "x" . $image_size)) != false or ($desc = $node->getDescription()) != "") {
                $desc = $node->getDescription();
                // Ok, let's display
                echo '<table width="100%" cellspacing="0" cellpadding="5">';
                echo '<tr class="and_head1">';
                echo '<td width="100%" align="left">';
                // Let's display the name
                $artist = $node->getAncestor('artist');
                echo "<strong>";
                if ($artist !== false) {
                    $display->link($artist, $artist->getName());
                    echo " - ";
                }
                echo $node->getName();
                if (!isNothing($node->getYear())) {
                    echo " (" . $node->getYear() . ")";
                }
                echo '</strong><br>';
                if ($art) {
                    if ($desc) {
                        $align = "left";
                    } else {
                        $align = "center";
                    }
                    $display->image($art, $node->getName(), $image_size, $image_size, "limit", false, false, $align, "4", "4");
                }
                if ($cms_mode == "false") {
                    echo '<div class="jz_artistDesc">';
                }
                echo $display->returnShortName($desc, $desc_truncate);
                // Do we need the read more link?
                if (strlen($desc) > $desc_truncate) {
                    $url_array = array();
                    $url_array['jz_path'] = $node->getPath("String");
                    $url_array['action'] = "popup";
                    $url_array['ptype'] = "readmore";
                    echo ' <a href="' . urlize($url_array) . '" onclick="openPopup(this, 450, 450); return false;">...read more</a>';
                }
                if ($cms_mode == "false") {
                    echo '</div>';
                }
                echo '</td></tr></table>';
            }
        }
        // Can this user powersearch?
        $on = true;
        if ($jzUSER->getSetting('powersearch') and $on == true) {
            if ($cms_mode == "true") {
                $method = "GET";
            } else {
                $method = "POST";
            }
            ?>
				
				<table width="100%" cellspacing="0" cellpadding="0"><tr height="2" style="background-image: url('<?php 
            echo $image_dir;
            ?>
row-spacer.gif');"><td width="100%"></td></tr></table>
			<?php 
        }
        ?>
			<?php 
        if (isset($_POST['jz_path'])) {
            $jzPath = $_POST['jz_path'];
        } else {
            $jzPath = $_GET['jz_path'];
        }
        // Now should we show this bar?
        $bcArray = explode("/", $jzPath);
        ?>
			<table width="100%" cellspacing="0" cellpadding="5">
				<tr class="and_head1">
					<td width="50%" valign="middle">
						<?php 
        $url = array();
        echo '<a href="' . urlize($url) . '"><img src="' . $image_dir . 'open-folder.gif" border="0"></a>';
        // Now let's see if we need the breadcrumbs
        unset($bcArray[count($bcArray) - 1]);
        $path = "";
        echo ' <a href="' . urlize($url) . '">' . word("Home") . '</a>';
        foreach ($bcArray as $item) {
            if ($item != "") {
                $path .= "/" . $item;
                $arr['jz_path'] = $path;
                echo ' / <a href="' . urlize($arr) . '">' . $item . '</a>';
            }
            unset($arr);
        }
        ?>
					</td>
					<td width="50%" valign="middle" align="right" nowrap="nowrap">
							<?php 
        if ($show_artist_list == "true") {
            ?>
								<?php 
            echo word("Artist") . ": ";
            ?>
								<form action="<?php 
            echo $this_page;
            ?>
" method="post">
								<?php 
            $display->hiddenPageVars();
            $display->dropdown("artist");
            ?>
								</form>
								&nbsp; | &nbsp;
							<?php 
        }
        ?>
							
				   			
				   			<?php 
        echo word('Search:');
        ?>
							<form action="<?php 
        echo $this_page;
        ?>
" method="<?php 
        echo $method;
        ?>
">
							<?php 
        foreach (getURLVars($this_page) as $key => $val) {
            echo '<input type="hidden" name="' . htmlentities($key) . '" value="' . htmlentities($val) . '">';
        }
        ?>
								<select class="jz_select" name="search_type" style="width:85px">
									<option value="ALL"><?php 
        echo word("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="text" name="search_query" class="jz_input" style="width:125px; font-size:10px ">
								<input type="hidden" name="doSearch" value="true">
								<input type="submit" class="jz_submit" value="Go">
							</form>
							
							
					</td>
				</tr>
			</table>
				
			<?php 
        // Now let's see if we need the breadcrumbs
        if ($_GET['jz_path'] != "") {
            ?>
				<table width="100%" cellspacing="0" cellpadding="0"><tr height="2" style="background-image: url('<?php 
            echo $image_dir;
            ?>
row-spacer.gif');"><td width="100%"></td></tr></table>
				<table width="100%" cellspacing="0" cellpadding="3">
					<tr class="and_head1">
						<td width="1%" valign="middle" nowrap>
							<?php 
            if ($cms_mode == "true") {
                $mode = "POST";
            } else {
                $mode = "GET";
            }
            $mode = "GET";
            if (isset($_POST['jz_path'])) {
                $bcArray = explode("/", $_POST['jz_path']);
            } else {
                $bcArray = explode("/", $_GET['jz_path']);
            }
            // Now we need to cut the last item off the list
            $bcArray = array_slice($bcArray, 0, count($bcArray) - 1);
            // Now let's display the dropdown for where we are
            echo '<form action="' . $this_page . '" method="' . $mode . '">' . "\n";
            echo '<select style="width:175px" class="jz_select" name="' . jz_encode('jz_path') . '" onChange="form.submit();">' . "\n";
            $parent = $node->getParent();
            $nodes = $parent->getSubNodes("nodes");
            sortElements($nodes);
            foreach ($nodes as $child) {
                $path = $child->getPath("String");
                echo '<option ';
                // Is this the current one?
                if ($child->getName() == $node->getName()) {
                    echo ' selected ';
                }
                echo 'value="' . jz_encode($path) . '">' . $display->returnShortName($child->getName(), 20) . '</option>' . "\n";
            }
            echo '</select>' . "\n";
            //$display->hiddenVariableField("jz_path");
            $display->hiddenPageVars();
            echo '<input type="hidden" name="frontend" value="' . $_GET['frontend'] . '">' . "\n";
            echo "</form>";
            ?>
						</td>
						<td valign="middle" nowrap>
							<?php 
            $display->playButton($node);
            echo "&nbsp;";
            $display->randomPlayButton($node);
            $url_array = array();
            $url_array['jz_path'] = $node->getPath("String");
            $url_array['action'] = "popup";
            $url_array['ptype'] = "iteminfo";
            echo ' <a onclick="openPopup(this, 450, 450); return false;" href="' . urlize($url_array) . '"><img src="' . $image_dir . 'more.gif" border="0"></a>';
            ?>
						</td>
					<?php 
            if ($display->wantResampleDropdown($node)) {
                ?>
					<td align="right">
						<?php 
                $display->displayResampleDropdown($node, word("Resample") . ": ");
                ?>
					</td>
				<?php 
            }
            ?>
				</tr>
				</table>
				<table width="100%" cellspacing="0" cellpadding="0"><tr height="2" style="background-image: url('<?php 
            echo $image_dir;
            ?>
row-spacer.gif');"><td width="100%"></td></tr></table>
				<?php 
        } else {
            if ($display->wantResampleDropdown($node)) {
                ?>
					<table width="100%" cellspacing="0" cellpadding="0"><tr>
					<td align="right">
						<?php 
                $display->displayResampleDropdown($node, word("Resample") . ": ");
                ?>
					</td>
				</tr></table>
				<?php 
            }
        }
        // ARTIST ALPHA: in header or only for root? Put the following in pageTop for the first...
        if ($show_artist_alpha == "true") {
            $blocks->alphabeticalList($node, "artist", 0);
        }
    }
예제 #2
0
파일: blocks.php 프로젝트: jinzora/jinzora3
 /**
  * Displays the block for the tracks on the Album page
  *
  * @author Ben Dodson, Ross Carlson
  * @since 9/6/05
  * @version 9/6/05
  *
  **/
 function albumTracksBlock($node = false)
 {
     global $album_name_truncate, $img_play, $img_random_play, $img_play_dis, $img_random_play_dis, $jzUSER, $enable_ratings, $show_album_clip_play, $img_clip;
     $artist = false;
     if ($node != false) {
         $art = $node->getParent();
         $artist = $art->getName();
     }
     if (!defined('NO_AJAX_LINKS') && $node === false) {
         $node = new jzMediaNode($_SESSION['jz_path']);
     }
     if (!is_object($node)) {
         return;
     }
     $display = new jzDisplay();
     // now let's set the title for this block
     $title = returnItemShortName($node->getName(), $album_name_truncate);
     // Now let's get the year
     $year = $node->getYear();
     $dispYear = "";
     if (!isnothing($year)) {
         $dispYear = " (" . $year . ")";
     }
     // Now let's setup our buttons for later
     $playButtons = "";
     $playButtons .= $display->playLink($node, $img_play, false, false, true) . $display->playLink($node, $img_random_play, false, false, true, true);
     // Now let's make sure they can stream
     if (!$jzUSER->getSetting('stream')) {
         $playButtons = $img_play_dis . $img_random_play_dis;
     }
     if ($show_album_clip_play == "true") {
         $playButtons .= $display->playLink($node, $img_clip, false, false, true, false, false, true);
     }
     if ($jzUSER->getSetting('download')) {
         $playButtons .= $display->downloadButton($node, false, true, true);
     } else {
         $playButtons .= $display->downloadButton($node, true, true, true);
     }
     $playButtons .= $display->podcastLink($node);
     if ($enable_ratings == "true") {
         $playButtons .= $display->rateButton($node, true);
     }
     $playButtons .= "&nbsp;";
     $this->blockHeader("Tracks: " . $title . $dispYear, $playButtons);
     $this->blockBodyOpen();
     // Now let's see if this is a multi-disc album
     $disks = $node->getSubNodes("nodes");
     $all_tracks = array();
     if (count($disks) > 0) {
         // Yep, it's a multi...
         foreach ($disks as $disk) {
             $disktracks = $disk->getSubNodes("tracks", -1);
             sortElements($disktracks, "number");
             ob_start();
             $display->playButton($disk);
             $display->link($disk, "&nbsp;<strong>" . $disk->getName() . "</strong><br>");
             $header = ob_get_contents();
             ob_end_clean();
             // Now let's store the album name
             $all_tracks[] = $header;
             // Now let's display the tracks for this album
             foreach ($disktracks as $t) {
                 $all_tracks[] = $t;
             }
         }
     }
     // Now let's read all the tracks for this album
     $tracks = $node->getSubNodes("tracks");
     $all_tracks += $tracks;
     $this->trackTable($all_tracks, "album");
     $this->blockBodyClose();
     //$this->blockSpacer();
 }
예제 #3
0
    function pageTop($title)
    {
        global $img_up_arrow, $row_colors;
        $display = new jzDisplay();
        if (isset($_GET['jz_path']) || isset($_POST['jz_path'])) {
            if (isset($_POST['jz_path'])) {
                $bcArray = explode("/", $_POST['jz_path']);
                $me = new jzMediaNode($_POST['jz_path']);
            } else {
                $bcArray = explode("/", $_GET['jz_path']);
                $me = new jzMediaNode($_GET['jz_path']);
            }
            // Now we need to cut the last item off the list
            $bcArray = array_slice($bcArray, 0, count($bcArray) - 1);
            // Now let's display the crumbs
            $path = "";
            $arr = array();
            if (isset($_GET['frame'])) {
                $arr['frame'] = $_GET['frame'];
            }
            ?>
				<table class="jz_track_table" width="100%" cellpadding="3">
					<tr class="<?php 
            echo $row_colors[1];
            ?>
">
						<td>
							<?php 
            $link = urlize($arr);
            echo $img_up_arrow . "&nbsp;";
            jzHREF($link, "", "", "", "Home");
            echo "&nbsp;";
            for ($i = 0; $i < count($bcArray); $i++) {
                echo $img_up_arrow . "&nbsp;";
                $path .= $bcArray[$i] . "/";
                $curPath = substr($path, 0, strlen($path) - 1);
                $arr = array();
                $arr['jz_path'] = $curPath;
                if (isset($_GET['frame'])) {
                    $arr['frame'] = $_GET['frame'];
                }
                $link = urlize($arr);
                jzHREF($link, "", "", "", $bcArray[$i]);
                echo "&nbsp;";
            }
            if (sizeof($bcArray) > 0) {
                echo "<br>";
            }
            ?>
						</td>
					</tr>
				<?php 
            if ($_GET['jz_path'] != "") {
                ?>
						<tr class="<?php 
                echo $row_colors[1];
                ?>
">
							<td>
								<?php 
                $display->playButton($me, false, false);
                echo "&nbsp;";
                $display->randomPlayButton($me, false, false);
                echo "&nbsp;";
                echo $title;
                ?>
							</td>
						</tr>
					<?php 
            }
            echo '</table>';
        } else {
            echo $title;
        }
    }