function ctools_entity_from_schema_columns_filter

1 call to ctools_entity_from_schema_columns_filter()
ctools_entity_from_schema_get_children in plugins/relationships/entity_from_schema.inc

File

plugins/relationships/entity_from_schema.inc, line 103

Code

function ctools_entity_from_schema_columns_filter($columns, $value) {
    foreach ($columns as $this_col => $that_col) {
        if ($value == $that_col) {
            return $this_col;
        }
    }
}