ElggEntity::getAnnotationsAvg PHP Method

getAnnotationsAvg() public method

Get the average of an integer type annotation.
public getAnnotationsAvg ( string $name ) : integer
$name string Annotation name
return integer
    public function getAnnotationsAvg($name)
    {
        return $this->getAnnotationCalculation($name, 'avg');
    }