| 1234567891011121314151617181920212223 |
- <?php if (file_exists('/Library/Server/Web/Data/Sites/Default/')) : ?>
- <script>
- function copyToClipboard(text,url) {
- window.prompt(text,url);
- }
- </script>
- <div style="text-align:center;">
- <a href="/webcal" target="_blank" title="Calendar">Kalendarz</a>
- <?php if (file_exists('/Library/Server/Web/Data/Sites/Default/webmail')) : ?>
- | <a href="/webmail" target="_blank" title="Webmail">Poczta</a>
- <?php endif; ?>
- | <a href="/changepassword" target="_blank" title="Change Password">Zmiana hasła</a>
- | <a href="/profilemanager" target="_blank" title="Profile Manager">Profile Manager</a>
- | <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>
- | <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>
- | <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>
- </div>
- <?php endif; ?>
|