mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
17 lines
No EOL
400 B
PHP
17 lines
No EOL
400 B
PHP
<?php
|
|
|
|
define("CUSTOM_HOOKS", True);
|
|
|
|
function hook_on_account_created($user, $domain, $hashed_password, $email) {
|
|
mylog("[HOOK] Account created");
|
|
}
|
|
|
|
function hook_on_account_activated($user, $domain, $expiration_date) {
|
|
mylog("[HOOK] Account activated");
|
|
}
|
|
|
|
function hook_on_expiration_date_updated($user, $domain, $expiration_date, $payloadJson, $os) {
|
|
mylog("[HOOK] Expiration updated");
|
|
}
|
|
|
|
?>
|