ORM::_get_compound_id_column_values_array PHP Method

_get_compound_id_column_values_array() protected method

Helper method that filters an array containing compound column/value arrays.
protected _get_compound_id_column_values_array ( $values )
    protected function _get_compound_id_column_values_array($values)
    {
        $filtered = array();
        foreach ($values as $value) {
            $filtered[] = $this->_get_compound_id_column_values($value);
        }
        return $filtered;
    }
ORM