ElggEntity::getAnnotationsSum PHP Method

getAnnotationsSum() public method

Get the sum of integer type annotations of a given name.
public getAnnotationsSum ( string $name ) : integer
$name string Annotation name
return integer
    public function getAnnotationsSum($name)
    {
        return $this->getAnnotationCalculation($name, 'sum');
    }