function hosting_db_server_as_url in Hosting 5
1 call to hosting_db_server_as_url()
File
- db_server/
hosting_db_server.module, line 55
Code
function hosting_db_server_as_url($nid) {
$node = node_load($nid);
return sprintf("%s://%s:%s@%s", $node->db_type, $node->db_user, $node->db_passwd, $node->title);
}