| @@ 69-78 (lines=10) @@ | ||
| 66 | ||
| 67 | //----------------------------------------------------- |
|
| 68 | ||
| 69 | public function deleteEmailAccount($email) |
|
| 70 | { |
|
| 71 | $module = 'Email'; |
|
| 72 | $function = 'delete_pop'; |
|
| 73 | $parameters = array( |
|
| 74 | 'email' => $email |
|
| 75 | ); |
|
| 76 | ||
| 77 | return $this->call($module, $function, $parameters); |
|
| 78 | } |
|
| 79 | ||
| 80 | //----------------------------------------------------- |
|
| 81 | ||
| @@ 96-105 (lines=10) @@ | ||
| 93 | ||
| 94 | //----------------------------------------------------- |
|
| 95 | ||
| 96 | public function getDiskUsage($email) |
|
| 97 | { |
|
| 98 | $module = 'Email'; |
|
| 99 | $function = 'get_disk_usage'; |
|
| 100 | $parameters = array( |
|
| 101 | 'user' => $email |
|
| 102 | ); |
|
| 103 | ||
| 104 | return $this->call($module, $function, $parameters); |
|
| 105 | } |
|
| 106 | ||
| 107 | //----------------------------------------------------- |
|
| 108 | ||