From dba7151245ac841a02a6733eef3f05c00d9d3794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 21 Jul 2010 10:05:55 +0200 Subject: [PATCH] Document new format strings. --- Documentation.html | 47 ++++++++++++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 18 deletions(-) diff --git a/Documentation.html b/Documentation.html index 67f9ff185..7574c09f4 100644 --- a/Documentation.html +++ b/Documentation.html @@ -2150,24 +2150,8 @@ setfacl -d -m "g:www-data:rwx" tmp
$cfg['TitleDatabase'] string
$cfg['TitleServer'] string
$cfg['TitleDefault'] string
-
Allows you to specify window's title bar. Following magic string can - be used to get special values: -
-
@HTTP_HOST@
-
HTTP host that runs phpMyAdmin
-
@SERVER@
-
MySQL server name
-
@VERBOSE@
-
Verbose MySQL server name as defined in server configuration
-
@VSERVER@
-
Verbose MySQL server name if set, otherwise normal
-
@DATABASE@
-
Currently opened database
-
@TABLE@
-
Currently opened table
-
@PHPMYADMIN@
-
phpMyAdmin with version
-
+
Allows you to specify window's title bar. You can use + format string expansion.
$cfg['ErrorIconic'] boolean
@@ -4330,6 +4314,33 @@ chmod o+rwx tmp

Click the first row of the range, hold the shift key and click the last row of the range. This works everywhere you see rows, for example in Browse mode or on the Structure page.

+

+ 6.27 What format strings can I use?

+ +

+ In all places where phpMyAdmin accepts format strings, you can use + @VARIABLE@ expansion and + strftime format strings. The + expanded variables depend on a context (eg. if you don't have chosen + table, you can not get table name), but following variables can be used: +

+
+
@HTTP_HOST@
+
HTTP host that runs phpMyAdmin
+
@SERVER@
+
MySQL server name
+
@VERBOSE@
+
Verbose MySQL server name as defined in server configuration
+
@VSERVER@
+
Verbose MySQL server name if set, otherwise normal
+
@DATABASE@
+
Currently opened database
+
@TABLE@
+
Currently opened table
+
@PHPMYADMIN@
+
phpMyAdmin with version
+
+

phpMyAdmin project