Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

alter_data()

Description

Utility function to randomly scramble data array for exporting

Parameters

ColumnTypeDefaultDescription
&$row
$key
$scramblecolumns boolean array - Optional array of columns to scramble
$row array - Array of data passed by reference

Return

void

Location

include/migration_functions.php lines 417 to 423

Definition

 
function alter_data(&$row,$key,$scramblecolumns=array())
    {
    foreach(
$scramblecolumns as $scramblecolumn=>$scrambletype)
        {
        
$row[$scramblecolumn] = call_user_func($scrambletype $row[$scramblecolumn]);
        }
    }

This article was last updated 19th March 2024 02:35 Europe/London time based on the source file dated 26th February 2024 11:00 Europe/London time.