ORM::sum PHP Method

sum() public method

Will return the sum of the choosen column.
public sum ( $column )
    public function sum($column)
    {
        return $this->_call_aggregate_db_function(__FUNCTION__, $column);
    }
ORM