|
@@ 138-146 (lines=9) @@
|
| 135 |
|
|
| 136 |
|
//----------------------------------------------------- |
| 137 |
|
|
| 138 |
|
public function deleteDatabase($database_name) |
| 139 |
|
{ |
| 140 |
|
$module = "Mysql"; |
| 141 |
|
$function = "delete_database"; |
| 142 |
|
$parameters = array( |
| 143 |
|
'name' => $database_name |
| 144 |
|
); |
| 145 |
|
return $this->call($module, $function, $parameters); |
| 146 |
|
} |
| 147 |
|
|
| 148 |
|
//----------------------------------------------------- |
| 149 |
|
|
|
@@ 174-182 (lines=9) @@
|
| 171 |
|
|
| 172 |
|
//----------------------------------------------------- |
| 173 |
|
|
| 174 |
|
public function deleteDatabaseUser($username) |
| 175 |
|
{ |
| 176 |
|
$module = "Mysql"; |
| 177 |
|
$function = "delete_database"; |
| 178 |
|
$parameters = array( |
| 179 |
|
'name' => $username |
| 180 |
|
); |
| 181 |
|
return $this->call($module, $function, $parameters); |
| 182 |
|
} |
| 183 |
|
|
| 184 |
|
//----------------------------------------------------- |
| 185 |
|
|