phpbb\search\fulltext_postgres::index_stats PHP Method

index_stats() public method

Returns an associative array containing information about the indexes
public index_stats ( )
    public function index_stats()
    {
        if (empty($this->stats)) {
            $this->get_stats();
        }
        return array($this->user->lang['FULLTEXT_POSTGRES_TOTAL_POSTS'] => $this->index_created() ? $this->stats['total_posts'] : 0);
    }