Advertisement
Guest User

Variables_PVR.xml

a guest
May 14th, 2018
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.35 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <includes> 
  3.     <variable name="PVRSeasonAndEpisodeVar">
  4.         <value condition="String.IsEmpty(ListItem.Season) + String.IsEmpty(ListItem.Episode)"></value>
  5.         <value condition="String.IsEmpty(ListItem.Season) + !String.IsEmpty(ListItem.Episode)">e$INFO[ListItem.Episode]</value>
  6.         <value condition="!String.IsEmpty(ListItem.Season) + String.IsEmpty(ListItem.Episode)">s$INFO[ListItem.Season]eX</value>
  7.         <value condition="!String.IsEmpty(ListItem.Season) + !String.IsEmpty(ListItem.Episode)">s$INFO[ListItem.Season]e$INFO[ListItem.Episode]</value>
  8.     </variable>
  9.  
  10.     <variable name="PVRSeasonAndEpisodeOrPlotOutlineVar">
  11.         <value condition="!String.IsEmpty(Container.ListItem.Episodename) + Window.IsVisible(pvrchannelguide)">$INFO[ListItem.Episodename]</value>
  12.         <value condition="!String.IsEmpty(ListItem.Episodename) + Window.IsVisible(pvrguideinfo)">$VAR[PVRSeasonAndEpisodeVar,, - ]$INFO[ListItem.Episodename]</value>
  13.         <value condition="[PVR.IsPlayingTv | PVR.IsPlayingRecording] + !String.IsEmpty(VideoPlayer.Episodename)">$INFO[VideoPlayer.Season,s]$INFO[VideoPlayer.Episode,e, - ]$INFO[VideoPlayer.Episodename]</value>
  14.         <value condition="[PVR.IsPlayingTv | PVR.IsPlayingRecording]">$INFO[VideoPlayer.PlotOutline]</value>
  15.         <value condition="!String.IsEmpty(Container.ListItem.Episodename)">$VAR[PVRSeasonAndEpisodeVar,, - ]$INFO[Container.ListItem.Episodename]</value>
  16.         <value condition="Window.IsVisible(pvrguideinfo)">$INFO[ListItem.PlotOutline]</value>
  17.         <value>$INFO[Container.ListItem.PlotOutline]</value>
  18.     </variable>
  19.  
  20.     <variable name="PVRFullScreenInfoTitleVar">
  21.         <value condition="String.IsEmpty(Window(fullscreeninfo).Property(LiveTVNext))">$INFO[VideoPlayer.Title]</value>
  22.         <value condition="!String.IsEmpty(Window(fullscreeninfo).Property(LiveTVNext))">[COLOR $VAR[ThemeLabelColor]]$LOCALIZE[19031]:[/COLOR] $INFO[VideoPlayer.NextTitle]</value>
  23.     </variable>
  24.  
  25.     <variable name="PVRFullScreenInfoSeasonEpisodeVar">
  26.         <value condition="String.IsEmpty(Window(fullscreeninfo).Property(LiveTVNext))">$VAR[PVRSeasonAndEpisodeNowPlayingPreviewVar]</value>
  27.         <value condition="!String.IsEmpty(Window(fullscreeninfo).Property(LiveTVNext))">$INFO[VideoPlayer.NextPlotOutline]</value>
  28.     </variable>
  29.    
  30.     <variable name="PVRFullScreenInfoGenreVar">
  31.         <value condition="String.IsEmpty(Window(fullscreeninfo).Property(LiveTVNext))">$INFO[VideoPlayer.Genre,$LOCALIZE[515]: ]</value>
  32.         <value condition="!String.IsEmpty(Window(fullscreeninfo).Property(LiveTVNext))">$INFO[VideoPlayer.NextGenre,$LOCALIZE[515]: ]</value>
  33.     </variable>
  34.    
  35.     <variable name="PVRFullScreenInfoPlotVar">
  36.         <value condition="String.IsEmpty(Window(fullscreeninfo).Property(LiveTVNext))">$INFO[VideoPlayer.Plot]</value>
  37.         <value condition="!String.IsEmpty(Window(fullscreeninfo).Property(LiveTVNext))">$INFO[VideoPlayer.NextPlot]</value>
  38.     </variable>
  39.    
  40.     <variable name="PVRChannelIconVar">
  41.         <value condition="Window.IsVisible(PVRGuideInfo)">$INFO[ListItem.Icon]</value>
  42.         <value condition="!String.IsEmpty(Window(Home).Property(SkinHelper.ListItem.Art.ChannelLogo))">$INFO[Window(Home).Property(SkinHelper.ListItem.Art.ChannelLogo)]</value>
  43.         <value>$INFO[ListItem.ActualIcon]</value>
  44.     </variable>
  45.     </include>
  46. </includes>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement