コード例 #1
0
ファイル: header.php プロジェクト: kdexter/oscommerce
      $.cookie('wkn', $.toJSON(wkn));
    });
  }

  $(document).ready(function() {
    updateShortcutNotifications(typeof resetShortcutNotification != 'undefined' ? '<?php 
    echo OSCOM::getSiteApplication();
    ?>
' : null);

    setInterval('updateShortcutNotifications()', 10000);
  });

  if (window.external.msIsSiteMode()) {

<?php 
    if (Access::hasShortcut()) {
        echo '    window.external.msSiteModeClearJumplist();' . "\n" . '    window.external.msSiteModeCreateJumplist("Shortcuts");' . "\n";
        foreach (Access::getShortcuts() as $shortcut) {
            echo '    window.external.msSiteModeAddJumpListItem("' . $shortcut['title'] . '", "' . OSCOM::getLink(null, $shortcut['module']) . '", "", "self");' . "\n";
        }
        echo '    window.external.msSiteModeShowJumplist();' . "\n";
    }
    ?>

  }
</script>

<?php 
}