mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
22 lines
No EOL
312 B
Text
22 lines
No EOL
312 B
Text
<?php
|
|
|
|
/* ### Hooks configuration ### */
|
|
|
|
/*
|
|
* Set the following to TRUE to be called in the below functions
|
|
*
|
|
* Default value: FALSE
|
|
*/
|
|
define('CUSTOM_HOOKS', FALSE);
|
|
|
|
/** ### Hooks implementation */
|
|
|
|
function hook_on_account_created($account) {
|
|
|
|
}
|
|
|
|
function hook_on_account_activated($account) {
|
|
|
|
}
|
|
|
|
?> |