No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

25 líneas
1.9 KiB

  1. <script language="javascript">
  2. //show manual links
  3. function showManuals(link) {
  4. var obj = $(link);
  5. window.parent.setManualPosition(".manual", obj.position().left, obj.position().top + obj.height() + 3);
  6. }
  7. function showServerMenu(link) {
  8. var obj = $(link);
  9. window.parent.setManualPosition(".server-menu", obj.position().left, obj.position().top + obj.height() + 3);
  10. }
  11. </script>
  12. <div class="top top-page">
  13. <div class="left">
  14. <select name="host" onchange="window.parent.location='<?php h(url("admin.changeHost")); ?>&index='+this.value" title="<?php hm("switch_hosts"); ?>">
  15. <?php foreach ($servers as $index => $server):?>
  16. <option value="<?php h($index);?>" <?php if($index == $serverIndex): ?>selected="selected"<?php endif;?>><?php h(isset($server["mongo_name"]) ? $server["mongo_name"] : "");?></option>
  17. <?php endforeach; ?>
  18. </select>
  19. | <a href="#" onclick="showServerMenu(this);return false;"><?php hm("tools");?> <span style="font-size:11px">▼</span></a> <?php if(!is_null($isMaster)): ?>| <?php if($isMaster):?><a href="<?php h(url("server.replication")); ?>" target="right" title="<?php hm("master"); ?>"><?php hm("master"); ?></a><?php else:?><a href="<?php h(url("server.replication")); ?>" target="right" title="<?php hm("slave"); ?>"><?php hm("slave"); ?></a><?php endif;?><?php endif;?>
  20. </div>
  21. <div class="right"><?php h($admin);?> | <a href="#" onclick="showManuals(this);return false;"><?php hm("manuals");?> <span style="font-size:11px">▼</span></a> | <a href="<?php h(url("plugins.index")) ?>" target="right">Plugins</a> | <a href="<?php h($logoutUrl);?>" target="_top"><?php hm("logout"); ?></a> | <?php render_select("language", rock_load_languages(), __LANG__, array( "style" => "width:100px", "onchange" => "window.top.location='index.php?action=admin.changeLang&lang='+this.value" )); ?> | <a href="<?php h(url("admin.about")); ?>" target="right">RockMongo v<?php h(ROCK_MONGO_VERSION);?></a></div>
  22. <div class="clear"></div>
  23. </div>