All Projects → Discutea → DForumBundle

Discutea / DForumBundle

Licence: other
Forum Bundle for symfony 3

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to DForumBundle

geekforum
基于python3.5、django1.10、xadmin的多用户博客论坛系统
Stars: ✭ 86 (+207.14%)
Mutual labels:  topic, forum
chameleon-sdk
Chameleon Software Development Kit
Stars: ✭ 12 (-57.14%)
Mutual labels:  bundle
LiipImagineSerializationBundle
Provides integration between LiipImagineBundle and JMSSerializerBundle
Stars: ✭ 24 (-14.29%)
Mutual labels:  bundle
stampie-bundle
stampie.github.io/
Stars: ✭ 26 (-7.14%)
Mutual labels:  bundle
hashed-asset-bundle
Apply an asset version based on a hash of the asset for symfony/asset
Stars: ✭ 24 (-14.29%)
Mutual labels:  bundle
rollit
🌯 Zero config js library bundling using rollup with support for Vue
Stars: ✭ 24 (-14.29%)
Mutual labels:  bundle
react-forum-system
React Forum System
Stars: ✭ 16 (-42.86%)
Mutual labels:  forum
core
The Laravel single page forum package (Vue + Tailwind CSS + Laravel)
Stars: ✭ 157 (+460.71%)
Mutual labels:  forum
windowed-observable
Messaging lib using a pub/sub observable scoped by namespaces.
Stars: ✭ 132 (+371.43%)
Mutual labels:  topic
IphpFileStoreBundle
Symfony 2 file upload for doctrine entities
Stars: ✭ 51 (+82.14%)
Mutual labels:  bundle
connect-bundle
No description or website provided.
Stars: ✭ 35 (+25%)
Mutual labels:  bundle
revel
[Deprecated] Revel is an elegant forum or knowledge sharing system base on NodeJS especially VueJS and Parse-Server
Stars: ✭ 18 (-35.71%)
Mutual labels:  forum
saloon-legacy
A place to chat and communicate: a buffalo forum
Stars: ✭ 84 (+200%)
Mutual labels:  forum
jsonrpc-bundle
JSON-RPC server for Symfony: exposes services registered in the service container as JSON-RPC-webservices
Stars: ✭ 31 (+10.71%)
Mutual labels:  bundle
cslaforum
Discussion forum for CSLA .NET
Stars: ✭ 31 (+10.71%)
Mutual labels:  forum
SonataDoctrineMongoDBAdminBundle
Symfony Sonata / Integrate Doctrine MongoDB ODM into the SonataAdminBundle
Stars: ✭ 64 (+128.57%)
Mutual labels:  bundle
extension-generator
This package is no longer supported. Please use https://github.com/flarum/cli instead.
Stars: ✭ 53 (+89.29%)
Mutual labels:  forum
angular-PubSub
Angular 1.x implementation of the Publish–Subscribe pattern.
Stars: ✭ 32 (+14.29%)
Mutual labels:  topic
FakeBundle
🗄 Use Resources in your Swift Package Manager executable
Stars: ✭ 13 (-53.57%)
Mutual labels:  bundle
FluxBB by Visman
My modification of FluxBB
Stars: ✭ 50 (+78.57%)
Mutual labels:  forum

ForumBundle README.

Lisez-moi Français

SensioLabsInsight Build Status Latest Stable Version Total Downloads

BUNDLE INFORMATION:

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

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

Available on:

FEATURES:

This bundle includes the following features:

  • 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.

1: Add the dependancy to your composer

composer require discutea/forum-bundle

2: Register DForumBundle in the Symfony kernel

   <?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(),
           // ...

4: Add routes routes

# app/Config/routing.yml

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

5: Bundle configuration:

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

7: Update the database

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

8: Install the styles

php bin/console asset:install

All set, browse /forum and start by creating your first category and forum

8: Avoid to 404 http://symfony.com/doc/current/cookbook/routing/redirect_trailing_slash.html

MORE INFO

To get help regarding this bundle or to request features (English and French)

  • server: irc.ircz.fr:6667
  • channel: #IRCz

To deal with potential issues, please open a ticket on GitHub.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].