~ubuntu-branches/ubuntu/utopic/phpmyadmin/utopic

« back to all changes in this revision

Viewing changes to libraries/engines/performance_schema.lib.php

  • Committer: Package Import Robot
  • Author(s): Michal Čihař
  • Date: 2014-05-10 16:31:42 UTC
  • mfrom: (1.2.55)
  • Revision ID: package-import@ubuntu.com-20140510163142-z03w5qirp4nnfoiy
Tags: 4:4.2.0-1
* New upstream release.
* Upgrade database for current phpMyAdmin configuration storage and
  in the configuration (Closes: #746956).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
2
/* vim: set expandtab sw=4 ts=4 sts=4: */
3
3
/**
 
4
 * The performance schema storage engine
 
5
 *
4
6
 * @package PhpMyAdmin-Engines
5
7
 */
6
8
if (! defined('PHPMYADMIN')) {
8
10
}
9
11
 
10
12
/**
 
13
 * The performance schema storage engine
11
14
 *
12
15
 * @package PhpMyAdmin-Engines
13
16
 */
14
 
class PMA_StorageEngine_performance_schema extends PMA_StorageEngine
 
17
class PMA_StorageEngine_PerformanceSchema extends PMA_StorageEngine
15
18
{
16
19
    /**
17
 
     * returns string with filename for the MySQL helppage
 
20
     * Returns string with filename for the MySQL helppage
18
21
     * about this storage engine
19
22
     *
20
23
     * @return string  mysql helppage filename
21
24
     */
22
 
    function getMysqlHelpPage()
 
25
    public function getMysqlHelpPage()
23
26
    {
24
27
        return 'performance-schema';
25
28
    }