27 lines
750 B
XML
27 lines
750 B
XML
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<component name="TVSeasonData" extends="ContentNode">
|
||
|
<interface>
|
||
|
<field id="title" type="string" />
|
||
|
<field id="posterUrl" type="string" />
|
||
|
<field id="showID" type="string" />
|
||
|
<field id="description" type="string" />
|
||
|
<field id="full_data" type="associativearray" onChange="setFields" />
|
||
|
<function name="getPoster" />
|
||
|
</interface>
|
||
|
<script type="text/brightscript">
|
||
|
<![CDATA[
|
||
|
sub setFields()
|
||
|
datum = m.top.full_data
|
||
|
m.top.title = datum.name
|
||
|
m.top.showID = datum.id
|
||
|
if datum.posterURL <> invalid
|
||
|
m.top.posterURL = datum.posterURL
|
||
|
else
|
||
|
m.top.posterURL = ""
|
||
|
end if
|
||
|
m.top.description = datum.overview
|
||
|
end sub
|
||
|
]]>
|
||
|
</script>
|
||
|
</component>
|