api.yalfloader.php 419 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Renders the UX loading spinner
  4. *
  5. * @return string
  6. */
  7. function wr_YalfLoaderRender() {
  8. global $ubillingConfig;
  9. $result = '';
  10. if ($ubillingConfig->getAlterParam('PAGE_LOAD_INDICATOR')) {
  11. $uiLoader = 'modules/jsc/yalfloader.html';
  12. if (file_exists($uiLoader)) {
  13. $result = file_get_contents($uiLoader);
  14. }
  15. }
  16. return ($result);
  17. }