| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/central/includes/hooks/ |
Upload File : |
<?php
/**
* Example Hook Function
*
* Please refer to the documentation @ http://docs.whmcs.com/Hooks for more information
* The code in this hook is commented out by default. Uncomment to use.
*
* @package WHMCS
* @author WHMCS Limited <development@whmcs.com>
* @copyright Copyright (c) WHMCS Limited 2005-2013
* @license http://www.whmcs.com/license/ WHMCS Eula
* @version $Id$
* @link http://www.whmcs.com/
*/
/*
if (!defined("WHMCS"))
die("This file cannot be accessed directly");
function create_forum_account($vars) {
$firstname = $vars['firstname'];
$lastname = $vars['lastname'];
$email = $vars['email'];
// Run code to create remote forum account here...
}
add_hook("ClientAdd",1,"create_forum_account");
*/