~ubuntu-branches/ubuntu/lucid/phpmyadmin/lucid

« back to all changes in this revision

Viewing changes to libraries/server_links.inc.php

  • Committer: Bazaar Package Importer
  • Author(s): Michal Čihař
  • Date: 2010-03-08 15:25:00 UTC
  • mfrom: (1.2.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100308152500-6e8hmuqc5co39de5
Tags: 4:3.3.0-1
* New upstream version.
* Rediff debian/patches.
* Fix permissions on mediawiki export extension.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/* vim: set expandtab sw=4 ts=4 sts=4: */
3
3
/**
4
4
 *
5
 
 * @version $Id: server_links.inc.php 12163 2009-01-01 21:39:21Z lem9 $
 
5
 * @version $Id: server_links.inc.php 12952 2009-09-12 11:17:56Z lem9 $
6
6
 * @package phpMyAdmin
7
7
 */
8
8
if (! defined('PHPMYADMIN')) {
64
64
    $tabs['rights']['icon'] = 's_rights.png';
65
65
    $tabs['rights']['link'] = 'server_privileges.php';
66
66
    $tabs['rights']['text'] = $strPrivileges;
 
67
 
 
68
    $tabs['replication']['icon'] = 's_replication.png';
 
69
    $tabs['replication']['link'] = 'server_replication.php';
 
70
    $tabs['replication']['text'] = $strReplication;
67
71
}
68
72
 
69
73
if (! empty($binary_logs)) {
83
87
$tabs['import']['link'] = 'server_import.php';
84
88
$tabs['import']['text'] = $strImport;
85
89
 
86
 
echo PMA_getTabs($tabs, array());
 
90
$tabs['import']['icon'] = 's_sync.png';
 
91
$tabs['import']['link'] = 'server_synchronize.php';
 
92
$tabs['import']['text'] = $strSynchronize;
 
93
 
 
94
echo PMA_generate_html_tabs($tabs, array());
87
95
unset($tabs);
88
96
 
89
97