ElggEntity::getAnnotationsMax PHP Method

getAnnotationsMax() public method

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