harentius / widgets-bundle
Symfony Bundle for easy creating and managing client-side widgets
Installs: 163
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.4.0
- sonata-project/admin-bundle: >=2.1
- symfony/framework-bundle: >=2.5
This package is auto-updated.
Last update: 2022-04-29 00:46:47 UTC
README
Symfony Bundle for easy creating and managing client-side widgets. Has SonataAdminBundle dependency and provide management.
Installation
$ composer.phar require harentius/widgets-bundle
- Enable bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Harentius\WidgetsBundle\HarentiusWidgetsBundle(), ); // ... }
- Include configuration:
imports: .... - { resource: "@HarentiusWidgetsBundle/Resources/config/config.yml" }
- Configure:
harentius_widgets: # List of routes, where widgets can be placed routes: acme_homepage: # User-friendly name for displaying in admin section (sonata) name: Homepage acme_blog_show: name: Article # Parameters, present in route parameters: slug: # Source (Now only entity supported) source: class: HarentiusBlogBundle:Article # Value to be passed to the route field: slug # Value to be shown in admin section identity: title # Registering widgets: key used in templates (look behind), value - shown in admin section widgets: widgets_block_sidebar: Sidebar widgets_block_bottom_left: Bottom left widgets_block_bottom_right: Bottom right
- Place in templates where you want:
{{ harentius_widget('widgets_block_sidebar') }} .... {{ harentius_widget('widgets_block_bottom_left') }} .... {{ harentius_widget('widgets_block_bottom_right') }}