Esempio n. 1
0
/**
 * Copy the specified request variable to the member variable of the specified object.
 * Do no copy if the member variable is already set.
 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
 * All Rights Reserved.
 */
function safe_map($request_var, &$focus, $always_copy = false)
{
    global $log;
    $log->debug("Entering safe_map(" . $request_var . "," . get_class($focus) . "," . $always_copy . ") method ...");
    safe_map_named($request_var, $focus, $request_var, $always_copy);
    $log->debug("Exiting safe_map method ...");
}
Esempio n. 2
0
/**
 * Copy the specified request variable to the member variable of the specified object.
 * Do no copy if the member variable is already set.
 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
 * All Rights Reserved.
 * Contributor(s): ______________________________________..
 */
function safe_map($request_var, &$focus, $always_copy = false)
{
    safe_map_named($request_var, $focus, $request_var, $always_copy);
}
Esempio n. 3
0
/**
 * Copy the specified request variable to the member variable of the specified object.
 * Do no copy if the member variable is already set.
 * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
 * All Rights Reserved.
 * Contributor(s): ______________________________________..
 */
function safe_map($request_var, &$focus, $always_copy = false)
{
    global $log;
    //changed by dingjianting on 2007-11-05 for php5.2.x
    $log->debug("Entering safe_map() method ...");
    safe_map_named($request_var, $focus, $request_var, $always_copy);
    $log->debug("Exiting safe_map method ...");
}