ElggEntity::getAnnotationsSum PHP Метод

getAnnotationsSum() публичный Метод

Get the sum of integer type annotations of a given name.
public getAnnotationsSum ( string $name ) : integer
$name string Annotation name
Результат integer
    public function getAnnotationsSum($name)
    {
        return $this->getAnnotationCalculation($name, 'sum');
    }