Skip to content

gnomii/SonataNewsBundle

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SonataNewsBundle

A blog platform based on Doctrine2 and Symfony2.

Installation

  • Add SonataNewsBundle to your src/Bundle dir

      git submodule add git://github.com/sonata-project/SonataNewsBundle.git vendor/bundles/Sonata/NewsBundle
      git submodule add git://github.com/sonata-project/SonataMediaBundle.git vendor/bundles/Sonata/MediaBundle
      git submodule add git://github.com/sonata-project/SonataUserBundle.git vendor/bundles/Sonata/UserBundle
      git submodule add git://github.com/FriendsOfSymfony/FOSUserBundle.git vendor/bundles/FOS/UserBundle
    
  • Add SonataNewsBundle to your application kernel

      // app/AppKernel.php
      public function registerBundles()
      {
          return array(
              // ...
              new Sonata\NewsBundle\SonataNewsBundle(),
              new Sonata\UserBundle\SonataUserBundle(),
              new Sonata\UserBundle\SonataMediaBundle(),
              new FOS\UserBundle\FOSUserBundle(),
              // ...
          );
      }
    
  • Run the easy-extends command

      php app/console sonata:easy-extends:generate SonataNewsBundle
      php app/console sonata:easy-extends:generate SonataUserBundle
      php app/console sonata:easy-extends:generate SonataMediaBundle
    
  • Enable the new bundles

      // app/AppKernel.php
      public function registerBundles()
      {
          return array(
              // ...
              new Application\Sonata\NewsBundle\SonataNewsBundle(),
              new Application\Sonata\UserBundle\SonataUserBundle(),
              new Application\Sonata\UserBundle\SonataMediaBundle(),
              // ...
          );
      }
    
  • Complete the FOS/UserBundle install and use the Application\Sonata\UserBundle\Entity\User as the user class

  • Add SonataNewsBundle routes to your application routing.yml

      # app/config/routing.yml
      news:
          resource: '@SonataNewsBundle/Resources/config/routing/news.xml'
          prefix: /news
    
  • Add a new context into your sonata_media configuration

      news:
          providers:
              - sonata.media.provider.dailymotion
              - sonata.media.provider.youtube
              - sonata.media.provider.image
    
          formats:
              small: { width: 150 , quality: 95}
              big:   { width: 500 , quality: 90}
    

About

A news/blog system

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published