Add serie in book detail
Questo commit è contenuto in:
parent
31b6333792
commit
3cee7cbd36
2 ha cambiato i file con 15 aggiunte e 0 eliminazioni
|
|
@ -13,6 +13,7 @@ require_once ("book.php");
|
|||
$book = Book::getBookById($_GET["id"]);
|
||||
$authors = $book->getAuthors ();
|
||||
$tags = $book->getTags ();
|
||||
$serie = $book->getSerie ();
|
||||
|
||||
?>
|
||||
<div class="bookpopup">
|
||||
|
|
@ -49,6 +50,19 @@ $tags = $book->getTags ();
|
|||
?>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
if (!is_null ($serie))
|
||||
{
|
||||
?>
|
||||
<div class="entrySection">
|
||||
<div class="buttonEffect pad6">
|
||||
<a href="index.php<?php echo str_replace ("&", "&", $serie->getUri ()) ?>"><?php echo localize("series.title") ?></a>
|
||||
</div>
|
||||
<?php echo str_format (localize ("content.series.data"), $book->seriesIndex, $serie->name) ?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<div class="clearer" />
|
||||
<hr />
|
||||
|
|
|
|||
|
|
@ -153,6 +153,7 @@ padding-top: 120px;
|
|||
{
|
||||
margin-top: 8px;
|
||||
margin-bottom: 18px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.entrySection span
|
||||
|
|
|
|||
Caricamento…
Aggiungi tabella
Aggiungi collegamento
Crea riferimento in una nuova segnalazione