Eccube\Repository\CategoryRepository::getTotalCount PHP Method

getTotalCount() public method

全カテゴリの合計を取得する.
public getTotalCount ( ) : integer
return integer 全カテゴリの合計数
    public function getTotalCount()
    {
        $qb = $this->createQueryBuilder('c')->select('count(c.id)')->where('c.del_flg = 0');
        $count = $qb->getQuery()->getSingleScalarResult();
        return $count;
    }