index.php 537 B

123456789101112131415
  1. <?php
  2. if (cfr('TASKBAR')) {
  3. $mapUrl = $ubillingConfig->getAlterParam('BLITZORTUNG_URL');
  4. if (!empty($mapUrl)) {
  5. $contentOptions = 'width="100%" height="700" frameborder="0"';
  6. $content = wf_tag('iframe', false, '', 'src="' . $mapUrl . '" ' . $contentOptions);
  7. show_window(__('Lightning map'), $content);
  8. zb_BillingStats(true);
  9. } else {
  10. show_error(__('Missed config option') . ' BLITZORTUNG_URL ' . __('Or') . ' ' . __('is empty'));
  11. }
  12. } else {
  13. show_error(__('Access denied'));
  14. }