victoire / image-widget
Victoire Image widget
Installs: 4 119
Dependents: 1
Suggesters: 0
Security: 0
Stars: 4
Watchers: 14
Forks: 6
Open Issues: 4
Type:symfony-bundle
Requires
- victoire/victoire: ~2.3 | ~3.0
README
Victoire Image Bundle
What is the purpose of this bundle
This bundle installs the Image Widget in your Victoire project. With this widget, you can add any type of image from your Media Library
Then, you can set up :
- its alternative text
- its legend
- define any kind of link among :
- Internal pages
- URL
- A routing setting
- An anchor - i.e a widget within a page
- define the mouseover effect among :
- PopOver
- ToolTip
Set Up Victoire
If you haven't already, you can follow the steps to set up Victoire here
Install the Image Bundle :
Run the following composer command :
php composer.phar require victoire/image-widget
Reminder
Do not forget to add the bundle in your AppKernel !
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\ImageBundle\VictoireWidgetImageBundle(),
);
return $bundles;
}
}