ORM::_get_compound_id_column_values PHP Method

_get_compound_id_column_values() protected method

If the key contains a column that does not exist in the given array, a null value will be returned for it.
protected _get_compound_id_column_values ( $value )
    protected function _get_compound_id_column_values($value)
    {
        $filtered = array();
        foreach ($this->_get_id_column_name() as $key) {
            $filtered[$key] = isset($value[$key]) ? $value[$key] : null;
        }
        return $filtered;
    }
ORM