softmute.php 760 B

12345678910111213141516
  1. <div class='element'>
  2. <div class='avatar' style='height:0px;'></div>
  3. <div class='post notimeline' style='text-align:left;'>
  4. <div style='padding:15px; text-align:left; display:inline-block;' id="settings">
  5. <h1><span class='fontello' style='font-size:inherit;'>&#xe81b;</span> Soft Mutes</h1>
  6. <ul>
  7. <?php
  8. foreach ($user_settings['softmute'] as $muted) {
  9. $info = user_info($muted)[0];
  10. echo "<li id='".$info['id']."' style='display:block; width:250px; height:35px;'><span style='float:left;'><span class='fontello' style='margin-right:5px;'>&#xe832;</span>" . $info['acct'] . "</span><span style='float:right;' class='fontello softmutedelete cursor' id='".$info['id']."'>&#xe80e;</span></li>";
  11. }
  12. ?>
  13. </ul>
  14. </div>
  15. </div>
  16. </div>