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