added PMA_StorageEngine::getMysqlHelpPage()

This commit is contained in:
Sebastian Mendel
2005-12-07 09:05:15 +00:00
parent 5cbdcc29a7
commit adfd1bd6ef
2 changed files with 22 additions and 0 deletions

View File

@@ -325,6 +325,17 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
return $this->$id();
}
/**
* returns string with filename for the MySQL helppage
* about this storage engne
*
* @return string mysql helppage filename
*/
function getMysqlHelpPage()
{
return 'innodb';
}
}
?>

View File

@@ -284,6 +284,17 @@ class PMA_StorageEngine
return array();
}
/**
* returns string with filename for the MySQL helppage
* about this storage engne
*
* @return string mysql helppage filename
*/
function getMysqlHelpPage()
{
return $this->engine . '-storage-engine';
}
/**
* public string getVariablesLikePattern()
*