apple-menu.php 1.3 KB

1234567891011121314151617181920212223
  1. <?php if (file_exists('/Library/Server/Web/Data/Sites/Default/')) : ?>
  2. <script>
  3. function copyToClipboard(text,url) {
  4. window.prompt(text,url);
  5. }
  6. </script>
  7. <div style="text-align:center;">
  8. <a href="/webcal" target="_blank" title="Calendar">Kalendarz</a>
  9. <?php if (file_exists('/Library/Server/Web/Data/Sites/Default/webmail')) : ?>
  10. | <a href="/webmail" target="_blank" title="Webmail">Poczta</a>
  11. <?php endif; ?>
  12. | <a href="/changepassword" target="_blank" title="Change Password">Zmiana hasła</a>
  13. | <a href="/profilemanager" target="_blank" title="Profile Manager">Profile Manager</a>
  14. | <a onclick="copyToClipboard('Skopiuj do schowka w celu użycia w programie przestrzennym np. QGIS i dodaj jako serwis WFS: Ctrl+C, Enter','https://'+location.hostname+location.pathname+'wfs-qgis.php/default_db/')">Serwis WFS QGis</a>
  15. | <a onclick="copyToClipboard('Skopiuj do schowka w celu użycia w systemach integracji/wymiany danych i dodaj jako serwis WFS: Ctrl+C, Enter','https://'+window.location.hostname+location.pathname+'wfs-qgis.php/default_db/')">Serwis API WFS</a>
  16. | <a onclick="copyToClipboard('Skopiuj do schowka w celu użycia w programie przestrzennym np. QGIS i dodaj jako serwis WMS: Ctrl+C, Enter','https://'+location.hostname+location.pathname+'wms/rastry')">Serwis WMS rastry</a>
  17. </div>
  18. <?php endif; ?>