Suggested changes
This commit is contained in:
parent
7cd158c45c
commit
92bee77f40
|
@ -151,6 +151,9 @@ class m_mail {
|
||||||
return $rr;
|
return $rr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $domain_id
|
||||||
|
*/
|
||||||
function catchall_del($domain_id) {
|
function catchall_del($domain_id) {
|
||||||
$catch = $this->catchall_getinfos($domain_id);
|
$catch = $this->catchall_getinfos($domain_id);
|
||||||
if (empty($catch['mail_id'])) return false;
|
if (empty($catch['mail_id'])) return false;
|
||||||
|
@ -613,7 +616,7 @@ ORDER BY
|
||||||
* @param $mail_id integer the number of the email to delete
|
* @param $mail_id integer the number of the email to delete
|
||||||
* @param integer $islocal boolean is it a POP/IMAP mailbox ?
|
* @param integer $islocal boolean is it a POP/IMAP mailbox ?
|
||||||
* @param integer $quotamb integer if islocal=1, quota in MB
|
* @param integer $quotamb integer if islocal=1, quota in MB
|
||||||
* @param $recipients string recipients, one mail per line.
|
* @param string $recipients string recipients, one mail per line.
|
||||||
* @return boolean if the email has been properly edited
|
* @return boolean if the email has been properly edited
|
||||||
* or false if an error occured ($err is filled accordingly)
|
* or false if an error occured ($err is filled accordingly)
|
||||||
*/
|
*/
|
||||||
|
@ -701,6 +704,7 @@ ORDER BY
|
||||||
* @ param : $type, the type of the alias created
|
* @ param : $type, the type of the alias created
|
||||||
* @param string $m
|
* @param string $m
|
||||||
* @param string $alias
|
* @param string $alias
|
||||||
|
* @param string $dom_id
|
||||||
*/
|
*/
|
||||||
function create_alias($dom_id,$m,$alias,$type="",$dontcheck=false) {
|
function create_alias($dom_id,$m,$alias,$type="",$dontcheck=false) {
|
||||||
global $err,$db,$mail;
|
global $err,$db,$mail;
|
||||||
|
|
|
@ -357,6 +357,10 @@ class m_piwik {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $module
|
||||||
|
* @param string $method
|
||||||
|
*/
|
||||||
function call_page($module, $method, $arguments=array(), $output = 'JSON') {
|
function call_page($module, $method, $arguments=array(), $output = 'JSON') {
|
||||||
global $err;
|
global $err;
|
||||||
$url = sprintf('%s/?module=%s&method=%s&format=%s', $this->piwik_server_uri, $module, $method, $output);
|
$url = sprintf('%s/?module=%s&method=%s&format=%s', $this->piwik_server_uri, $module, $method, $output);
|
||||||
|
|
Loading…
Reference in New Issue