Вычищение старых конструкций PHP + многочисленная доводка по мелочи.
[mpd-web.git] / ajax / playlists.php
index 23066cf1ebfaeb8f9159d2b855a8c90d1c8893af..91e386e653d9ce09d3ee0245f8216a04eb95a1e8 100644 (file)
@@ -7,7 +7,7 @@ include('mpd.php');
   <table>
     <tr>
       <td><span class="button" onclick="RefreshPlaylist()"><img width="20" src="images/playlist.png"></span><td>
-      <td><span class="button" onclick="confirm('Очистить список. Вы уверены?') ? PlaylistCommandRefStatus('clear') : false;" ><img width="20" src="images/removeall.png"></span><td>
+      <td><span class="button" onclick="confirm('Clear current playlist, are you sure?') ? PlaylistCommandRefStatus('clear') : false;" ><img width="20" src="images/removeall.png"></span><td>
     </tr>
   </table>
 </div>
@@ -17,7 +17,7 @@ include('mpd.php');
     <tr id="items_heading">
       <td></td><td>Название</td><td>Управление</td>
     </tr>
-<?
+<?php
 
 $playlists = $mpd->playlists;
 
@@ -26,11 +26,13 @@ for($i=0;$i<count($playlists);$i++) {
 ?>
     <tr id="item<?php if($i%2==0) { echo "Even";}else{echo "Odd";}?>">
       <td id="track_number"><a name="<?php echo $i;?>"></a></td>
-      <td id="file"><span class="button" onclick="PlaylistEditCommandRefFull('load','<?php echo $playlists[$i]['name'];?>')"><? echo $playlists[$i]['name'];?></td>
-      <td id="controls"><span class="button" onclick="confirm('Удалить список <?php echo $playlists[$i]['name'];?>. Вы уверены?') ? DelPlayList('<?php echo $playlists[$i]['name'];?>') : false;"><img width="20" src="images/minus.png"></span></td>
+      <td id="file"><span class="button" onclick="PlaylistEditCommandRefFull('load','<?php echo $playlists[$i]['name'];?>')"><?php echo $playlists[$i]['name'];?></td>
+      <td id="controls"><span class="button" onclick="confirm('Delete playlist <?php echo $playlists[$i]['name'];?>, are you sure?') ? DelPlayList('<?php echo $playlists[$i]['name'];?>') : false;"><img width="20" src="images/minus.png"></span></td>
     </tr>  
 <?php
+
 }
+
 ?>
 
   </table>
@@ -40,7 +42,7 @@ for($i=0;$i<count($playlists);$i++) {
   <table>
     <tr>
       <td><span class="button" onclick="RefreshPlaylist()"><img width="20" src="images/playlist.png"></span><td>
-      <td><span class="button" onclick="return confirm('Очистить список. Вы уверены?') ? PlaylistCommand('clear') : false;" ><img width="20" src="images/removeall.png"></span><td>
+      <td><span class="button" onclick="confirm('Clear current playlist, are you sure?') ? PlaylistCommandRefStatus('clear') : false;" ><img width="20" src="images/removeall.png"></span><td>
     </tr>
   </table>
 </div>