2017 © Pedro PelĂĄez
 

symfony-bundle forum-bundle

Simple forum bundle.

image

discutea/forum-bundle

Simple forum bundle.

  • Saturday, April 14, 2018
  • by Strategy
  • Repository
  • 6 Watchers
  • 23 Stars
  • 1,722 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 11 Forks
  • 1 Open issues
  • 10 Versions
  • 5 % Grown

The README.md

ForumBundle README.

Lisez-moi Français, (*1)

SensioLabsInsight Build Status Latest Stable Version Total Downloads, (*2)

BUNDLE INFORMATION:

This bundle has been conceived with and for Symfony 3 (PHP >= 5.x | 7.x), (*3)

Annonce: If my work seems good to you, be aware that I am currently looking for a job., (*4)

Available on: * Github * Packagist * KnpBundles, (*5)

FEATURES:, (*6)

This bundle includes the following features:, (*7)

  • Category: Create / Edit / Delete / Move forums / User rights management.
  • Forum: Create / Edit / Delete / Move topics
  • Topics: Create / Edit / Delete / Move
  • Posts: Create / Edit / Delete
  • Labels: Resolved / Pinned / Closed
  • Others, coming soon...

SETUP:

Before setting up everything, this bundle requires that you install KnpPaginatorBundle., (*8)

1: Add the dependancy to your composer, (*9)

composer require discutea/forum-bundle

2: Register DForumBundle in the Symfony kernel, (*10)

php <?php // app/AppKernel.php // ... public function registerBundles() { $bundles = [ // ... // IF NOT EXIST new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(), new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(), // END OF DEPENDANCY new Discutea\DForumBundle\DForumBundle(), // ..., (*11)

4: Add routes routes, (*12)

# app/Config/routing.yml

discutea_forum:
    resource: "@DForumBundle/Resources/config/routing.yml"
    prefix:   /

5: Bundle configuration:, (*13)

User entity

doctrine:
    orm:
        auto_generate_proxy_classes: "%kernel.debug%"
        naming_strategy: doctrine.orm.naming_strategy.underscore
        auto_mapping: true
        resolve_target_entities:
            Symfony\Component\Security\Core\User\UserInterface: Namespace\YourUserBundle\Entity\User

# Stof Doctrine Extensions
stof_doctrine_extensions:
    orm:
        default:
            sluggable: true

# Configuration for knp paginator: don't forget to customize page_name
knp_paginator:
    page_range: 3
    default_options:
        page_name: p
        sort_field_name: sort
        sort_direction_name: direction
        distinct: true
    template:
        pagination: KnpPaginatorBundle:Pagination:twitter_bootstrap_v3_pagination.html.twig
        sortable: KnpPaginatorBundle:Pagination:sortable_link.html.twig

# Configuration for discutea forum
discutea_forum:
    preview:
        enabled: true
    knp_paginator:
        page_name: p  #see knp_paginator.default_option.page_name
        topics:
            enabled: true
            per_page: 10
        posts:
            enabled: true
            per_page: 10

6: Add a ROLE_MODERATOR in app/config/security.yml, (*14)

7: Update the database, (*15)

php bin/console doctrine:schema:update --force

8: Install the styles, (*16)

php bin/console asset:install

All set, browse /forum and start by creating your first category and forum, (*17)

8: Avoid to 404 http://symfony.com/doc/current/cookbook/routing/redirect_trailing_slash.html, (*18)

MORE INFO

To get help regarding this bundle or to request features (English and French) - server: irc.ircz.fr:6667 - channel: #IRCz, (*19)

To deal with potential issues, please open a ticket on GitHub., (*20)

The Versions