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');
    }