Music¶
If the item is of type “Music”, like a CD, the placeholders described on this page are available.
{{ Artist }}¶
The item’s artist, like “Michael Jackson”. If more than one, formatted as a comma separated list.
Elton John, Leon Russell
{{ ArtistArray }}¶
An array containing the item’s artist information, for example:
Array
(
[0] => Elton John
[1] => Leon Russell
)
{{ ArtistHtmlList }}¶
A prepared HTML list, containing the artists, example:
<ul>
<li>Elton John</li>
<li>Leon Russell</li>
</ul>
{{ IsAutographed }}¶
If the item is autographed.
{{ IsMemorabilia }}¶
If the item is a memorabilia.
{{ RunningTime }}¶
The item’s running time, e.g. “3344 seconds”.
{{ Tracks }}¶
An array containg the item’s tracks.
Array
(
[Disc 1] => Array
(
[0] => Array
(
[number] => 1
[title] => Bad
)
[1] => Array
(
[number] => 2
[title] => The Way You Make Me Feel
)
[2] => Array
(
[number] => 3
[title] => Speed Demon
)
[3] => Array
(
[number] => 4
[title] => Liberian Girl
)
... and so on
{{ TracksHTML }}¶
HTML list containing all items’s tracks.
<ul>
<li>Disc 1
<ul>
<li>1. Bad</li>
<li>2. The Way You Make Me Feel</li>
<li>3. Speed Demon</li>
<li>4. Liberian Girl</li>
... and so on
</ul>
</li>
</ul>