PageRenderTime 50ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/backend/plugin/ItemCollection/pages/empty.php

http://mollify.googlecode.com/
PHP | 20 lines | 20 code | 0 blank | 0 comment | 0 complexity | 871c582bc21e999997e9bdcc36af21f7 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-3-Clause
  1. <html>
  2. <head>
  3. <script type="text/javascript" language="javascript" src="<?php print $resourcesUrl ?>/jquery-1.4.2.min.js"></script>
  4. <script>
  5. $(document).ready(function() {
  6. var loc = window.location;
  7. $.get(loc+"?ac=prepare", function(r) {
  8. $("#itemcollection-preparing").hide();
  9. $("#itemcollection-downloading").show();
  10. window.location = loc + "?ac=download&id="+encodeURIComponent(r.result.id);
  11. });
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <div id="itemcollection-empty">
  17. The collection you requested is empty.
  18. </div>
  19. </body>
  20. </html>