function replication_help in Replication 5
Same name and namespace in other branches
- 5.0 replication.module \replication_help()
Replication plugin for multi-master Mysql Replication Author: Michael Heath Date: 2007-06-13 17:46 GMT Developed for use at eServGlobal Ltd. http://www.eservglobal.com
File
- ./
replication.module, line 11
Code
function replication_help($section = '') {
$output = '';
switch ($section) {
case "admin/help#replication":
$output = '<p>' . t("Database Replication Tool") . '</p>';
break;
}
return $output;
}