├── LICENSE ├── composer.json └── src ├── Action ├── AbstractPostArchiveAction.php ├── CollectionPostArchiveAction.php ├── CommentListAction.php ├── CreateCommentAction.php ├── CreateCommentFormAction.php ├── DailyPostArchiveAction.php ├── ModerateCommentAction.php ├── MonthlyPostArchiveAction.php ├── PostArchiveAction.php ├── TagPostArchiveAction.php ├── ViewPostAction.php └── YearlyPostArchiveAction.php ├── Admin ├── CommentAdmin.php └── PostAdmin.php ├── Block ├── Breadcrumb │ ├── BaseNewsBreadcrumbBlockService.php │ ├── NewsArchiveBreadcrumbBlockService.php │ └── NewsPostBreadcrumbBlockService.php ├── RecentCommentsBlockService.php └── RecentPostsBlockService.php ├── Command └── SynchronizeCommentsCountCommand.php ├── Controller ├── Api │ ├── CommentController.php │ └── PostController.php ├── CommentAdminController.php └── PostController.php ├── DependencyInjection ├── Compiler │ └── TwigStringExtensionCompilerPass.php ├── Configuration.php └── SonataNewsExtension.php ├── Document ├── BaseComment.php ├── BasePost.php ├── BasePostRepository.php ├── CommentManager.php └── PostManager.php ├── Entity ├── BaseComment.php ├── BasePost.php ├── BasePostRepository.php ├── CommentManager.php └── PostManager.php ├── Event ├── CommentEvent.php ├── FilterCommentResponseEvent.php ├── FormEvent.php └── GetResponseCommentEvent.php ├── Exception └── NoDriverException.php ├── Form └── Type │ ├── ApiCommentType.php │ ├── ApiPostType.php │ ├── CommentStatusType.php │ └── CommentType.php ├── Mailer ├── Mailer.php └── MailerInterface.php ├── Model ├── Blog.php ├── BlogInterface.php ├── Comment.php ├── CommentInterface.php ├── CommentManagerInterface.php ├── NoDriverManager.php ├── Post.php ├── PostInterface.php └── PostManagerInterface.php ├── Permalink ├── CollectionPermalink.php ├── DatePermalink.php └── PermalinkInterface.php ├── Resources ├── config │ ├── actions.xml │ ├── api_controllers.xml │ ├── api_form_doctrine_mongodb.xml │ ├── api_form_doctrine_orm.xml │ ├── block.xml │ ├── command.xml │ ├── core.xml │ ├── doctrine │ │ ├── BaseComment.mongodb.xml │ │ ├── BaseComment.orm.xml │ │ ├── BasePost.mongodb.xml │ │ ├── BasePost.orm.xml │ │ ├── Comment.mongodb.xml.skeleton │ │ ├── Comment.orm.xml.skeleton │ │ ├── Post.mongodb.xml.skeleton │ │ └── Post.orm.xml.skeleton │ ├── doctrine_mongodb.xml │ ├── doctrine_mongodb_admin.xml │ ├── doctrine_orm.xml │ ├── doctrine_orm_admin.xml │ ├── form.xml │ ├── no_driver.xml │ ├── no_driver_admin.xml │ ├── routing │ │ ├── api.xml │ │ ├── api │ │ │ ├── comment.xml │ │ │ └── post.xml │ │ └── news.xml │ ├── serializer.xml │ ├── serializer │ │ ├── Model.Comment.xml │ │ └── Model.Post.xml │ ├── twig.xml │ └── validation.xml ├── meta │ └── LICENSE ├── translations │ ├── SonataAdminBundle.de.xlf │ ├── SonataAdminBundle.en.xlf │ ├── SonataNewsBundle.cs.xliff │ ├── SonataNewsBundle.de.xliff │ ├── SonataNewsBundle.en.xliff │ ├── SonataNewsBundle.es.xliff │ ├── SonataNewsBundle.fr.xliff │ ├── SonataNewsBundle.hu.xliff │ ├── SonataNewsBundle.ja.xliff │ ├── SonataNewsBundle.nl.xliff │ ├── SonataNewsBundle.pt_BR.xliff │ ├── SonataNewsBundle.ru.xliff │ ├── SonataNewsBundle.sk.xliff │ └── SonataNewsBundle.sl.xliff └── views │ ├── Admin │ ├── inner_row_comment.html.twig │ └── list_post_custom.html.twig │ ├── Block │ ├── recent_comments.html.twig │ └── recent_posts.html.twig │ ├── Mail │ └── comment_notification.txt.twig │ └── Post │ ├── archive.html.twig │ ├── archive.rss.twig │ ├── comment_form.html.twig │ ├── comments.html.twig │ └── view.html.twig ├── Serializer └── PostSerializerHandler.php ├── SonataNewsBundle.php ├── SonataNewsEvents.php ├── Status └── CommentStatusRenderer.php ├── Twig └── Extension │ └── NewsExtension.php └── Util ├── HashGenerator.php └── HashGeneratorInterface.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/composer.json -------------------------------------------------------------------------------- /src/Action/AbstractPostArchiveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/AbstractPostArchiveAction.php -------------------------------------------------------------------------------- /src/Action/CollectionPostArchiveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/CollectionPostArchiveAction.php -------------------------------------------------------------------------------- /src/Action/CommentListAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/CommentListAction.php -------------------------------------------------------------------------------- /src/Action/CreateCommentAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/CreateCommentAction.php -------------------------------------------------------------------------------- /src/Action/CreateCommentFormAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/CreateCommentFormAction.php -------------------------------------------------------------------------------- /src/Action/DailyPostArchiveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/DailyPostArchiveAction.php -------------------------------------------------------------------------------- /src/Action/ModerateCommentAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/ModerateCommentAction.php -------------------------------------------------------------------------------- /src/Action/MonthlyPostArchiveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/MonthlyPostArchiveAction.php -------------------------------------------------------------------------------- /src/Action/PostArchiveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/PostArchiveAction.php -------------------------------------------------------------------------------- /src/Action/TagPostArchiveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/TagPostArchiveAction.php -------------------------------------------------------------------------------- /src/Action/ViewPostAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/ViewPostAction.php -------------------------------------------------------------------------------- /src/Action/YearlyPostArchiveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Action/YearlyPostArchiveAction.php -------------------------------------------------------------------------------- /src/Admin/CommentAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Admin/CommentAdmin.php -------------------------------------------------------------------------------- /src/Admin/PostAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Admin/PostAdmin.php -------------------------------------------------------------------------------- /src/Block/Breadcrumb/BaseNewsBreadcrumbBlockService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Block/Breadcrumb/BaseNewsBreadcrumbBlockService.php -------------------------------------------------------------------------------- /src/Block/Breadcrumb/NewsArchiveBreadcrumbBlockService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Block/Breadcrumb/NewsArchiveBreadcrumbBlockService.php -------------------------------------------------------------------------------- /src/Block/Breadcrumb/NewsPostBreadcrumbBlockService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Block/Breadcrumb/NewsPostBreadcrumbBlockService.php -------------------------------------------------------------------------------- /src/Block/RecentCommentsBlockService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Block/RecentCommentsBlockService.php -------------------------------------------------------------------------------- /src/Block/RecentPostsBlockService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Block/RecentPostsBlockService.php -------------------------------------------------------------------------------- /src/Command/SynchronizeCommentsCountCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Command/SynchronizeCommentsCountCommand.php -------------------------------------------------------------------------------- /src/Controller/Api/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Controller/Api/CommentController.php -------------------------------------------------------------------------------- /src/Controller/Api/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Controller/Api/PostController.php -------------------------------------------------------------------------------- /src/Controller/CommentAdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Controller/CommentAdminController.php -------------------------------------------------------------------------------- /src/Controller/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Controller/PostController.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/TwigStringExtensionCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/DependencyInjection/Compiler/TwigStringExtensionCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/SonataNewsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/DependencyInjection/SonataNewsExtension.php -------------------------------------------------------------------------------- /src/Document/BaseComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Document/BaseComment.php -------------------------------------------------------------------------------- /src/Document/BasePost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Document/BasePost.php -------------------------------------------------------------------------------- /src/Document/BasePostRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Document/BasePostRepository.php -------------------------------------------------------------------------------- /src/Document/CommentManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Document/CommentManager.php -------------------------------------------------------------------------------- /src/Document/PostManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Document/PostManager.php -------------------------------------------------------------------------------- /src/Entity/BaseComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Entity/BaseComment.php -------------------------------------------------------------------------------- /src/Entity/BasePost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Entity/BasePost.php -------------------------------------------------------------------------------- /src/Entity/BasePostRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Entity/BasePostRepository.php -------------------------------------------------------------------------------- /src/Entity/CommentManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Entity/CommentManager.php -------------------------------------------------------------------------------- /src/Entity/PostManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Entity/PostManager.php -------------------------------------------------------------------------------- /src/Event/CommentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Event/CommentEvent.php -------------------------------------------------------------------------------- /src/Event/FilterCommentResponseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Event/FilterCommentResponseEvent.php -------------------------------------------------------------------------------- /src/Event/FormEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Event/FormEvent.php -------------------------------------------------------------------------------- /src/Event/GetResponseCommentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Event/GetResponseCommentEvent.php -------------------------------------------------------------------------------- /src/Exception/NoDriverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Exception/NoDriverException.php -------------------------------------------------------------------------------- /src/Form/Type/ApiCommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Form/Type/ApiCommentType.php -------------------------------------------------------------------------------- /src/Form/Type/ApiPostType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Form/Type/ApiPostType.php -------------------------------------------------------------------------------- /src/Form/Type/CommentStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Form/Type/CommentStatusType.php -------------------------------------------------------------------------------- /src/Form/Type/CommentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Form/Type/CommentType.php -------------------------------------------------------------------------------- /src/Mailer/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Mailer/Mailer.php -------------------------------------------------------------------------------- /src/Mailer/MailerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Mailer/MailerInterface.php -------------------------------------------------------------------------------- /src/Model/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/Blog.php -------------------------------------------------------------------------------- /src/Model/BlogInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/BlogInterface.php -------------------------------------------------------------------------------- /src/Model/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/Comment.php -------------------------------------------------------------------------------- /src/Model/CommentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/CommentInterface.php -------------------------------------------------------------------------------- /src/Model/CommentManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/CommentManagerInterface.php -------------------------------------------------------------------------------- /src/Model/NoDriverManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/NoDriverManager.php -------------------------------------------------------------------------------- /src/Model/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/Post.php -------------------------------------------------------------------------------- /src/Model/PostInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/PostInterface.php -------------------------------------------------------------------------------- /src/Model/PostManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Model/PostManagerInterface.php -------------------------------------------------------------------------------- /src/Permalink/CollectionPermalink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Permalink/CollectionPermalink.php -------------------------------------------------------------------------------- /src/Permalink/DatePermalink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Permalink/DatePermalink.php -------------------------------------------------------------------------------- /src/Permalink/PermalinkInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Permalink/PermalinkInterface.php -------------------------------------------------------------------------------- /src/Resources/config/actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/actions.xml -------------------------------------------------------------------------------- /src/Resources/config/api_controllers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/api_controllers.xml -------------------------------------------------------------------------------- /src/Resources/config/api_form_doctrine_mongodb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/api_form_doctrine_mongodb.xml -------------------------------------------------------------------------------- /src/Resources/config/api_form_doctrine_orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/api_form_doctrine_orm.xml -------------------------------------------------------------------------------- /src/Resources/config/block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/block.xml -------------------------------------------------------------------------------- /src/Resources/config/command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/command.xml -------------------------------------------------------------------------------- /src/Resources/config/core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/core.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/BaseComment.mongodb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine/BaseComment.mongodb.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/BaseComment.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine/BaseComment.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/BasePost.mongodb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine/BasePost.mongodb.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/BasePost.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine/BasePost.orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine/Comment.mongodb.xml.skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine/Comment.mongodb.xml.skeleton -------------------------------------------------------------------------------- /src/Resources/config/doctrine/Comment.orm.xml.skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine/Comment.orm.xml.skeleton -------------------------------------------------------------------------------- /src/Resources/config/doctrine/Post.mongodb.xml.skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine/Post.mongodb.xml.skeleton -------------------------------------------------------------------------------- /src/Resources/config/doctrine/Post.orm.xml.skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine/Post.orm.xml.skeleton -------------------------------------------------------------------------------- /src/Resources/config/doctrine_mongodb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine_mongodb.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine_mongodb_admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine_mongodb_admin.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine_orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine_orm.xml -------------------------------------------------------------------------------- /src/Resources/config/doctrine_orm_admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/doctrine_orm_admin.xml -------------------------------------------------------------------------------- /src/Resources/config/form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/form.xml -------------------------------------------------------------------------------- /src/Resources/config/no_driver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/no_driver.xml -------------------------------------------------------------------------------- /src/Resources/config/no_driver_admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/no_driver_admin.xml -------------------------------------------------------------------------------- /src/Resources/config/routing/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/routing/api.xml -------------------------------------------------------------------------------- /src/Resources/config/routing/api/comment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/routing/api/comment.xml -------------------------------------------------------------------------------- /src/Resources/config/routing/api/post.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/routing/api/post.xml -------------------------------------------------------------------------------- /src/Resources/config/routing/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/routing/news.xml -------------------------------------------------------------------------------- /src/Resources/config/serializer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/serializer.xml -------------------------------------------------------------------------------- /src/Resources/config/serializer/Model.Comment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/serializer/Model.Comment.xml -------------------------------------------------------------------------------- /src/Resources/config/serializer/Model.Post.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/serializer/Model.Post.xml -------------------------------------------------------------------------------- /src/Resources/config/twig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/twig.xml -------------------------------------------------------------------------------- /src/Resources/config/validation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/config/validation.xml -------------------------------------------------------------------------------- /src/Resources/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/meta/LICENSE -------------------------------------------------------------------------------- /src/Resources/translations/SonataAdminBundle.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataAdminBundle.de.xlf -------------------------------------------------------------------------------- /src/Resources/translations/SonataAdminBundle.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataAdminBundle.en.xlf -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.cs.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.cs.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.de.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.de.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.en.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.es.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.es.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.fr.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.fr.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.hu.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.hu.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.ja.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.ja.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.nl.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.nl.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.pt_BR.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.pt_BR.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.ru.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.ru.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.sk.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.sk.xliff -------------------------------------------------------------------------------- /src/Resources/translations/SonataNewsBundle.sl.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/translations/SonataNewsBundle.sl.xliff -------------------------------------------------------------------------------- /src/Resources/views/Admin/inner_row_comment.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Admin/inner_row_comment.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Admin/list_post_custom.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Admin/list_post_custom.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Block/recent_comments.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Block/recent_comments.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Block/recent_posts.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Block/recent_posts.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Mail/comment_notification.txt.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Mail/comment_notification.txt.twig -------------------------------------------------------------------------------- /src/Resources/views/Post/archive.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Post/archive.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Post/archive.rss.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Post/archive.rss.twig -------------------------------------------------------------------------------- /src/Resources/views/Post/comment_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Post/comment_form.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Post/comments.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Post/comments.html.twig -------------------------------------------------------------------------------- /src/Resources/views/Post/view.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Resources/views/Post/view.html.twig -------------------------------------------------------------------------------- /src/Serializer/PostSerializerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Serializer/PostSerializerHandler.php -------------------------------------------------------------------------------- /src/SonataNewsBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/SonataNewsBundle.php -------------------------------------------------------------------------------- /src/SonataNewsEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/SonataNewsEvents.php -------------------------------------------------------------------------------- /src/Status/CommentStatusRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Status/CommentStatusRenderer.php -------------------------------------------------------------------------------- /src/Twig/Extension/NewsExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Twig/Extension/NewsExtension.php -------------------------------------------------------------------------------- /src/Util/HashGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Util/HashGenerator.php -------------------------------------------------------------------------------- /src/Util/HashGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonata-project/SonataNewsBundle/HEAD/src/Util/HashGeneratorInterface.php --------------------------------------------------------------------------------