victoire/image-widget

This package is abandoned and no longer maintained. No replacement package was suggested.

Victoire Image widget

Installs: 4 119

Dependents: 1

Suggesters: 0

Security: 0

Stars: 4

Watchers: 14

Forks: 6

Open Issues: 4

Type:symfony-bundle

2.0.9 2019-06-26 14:33 UTC

This package is auto-updated.

Last update: 2021-12-21 22:52:04 UTC


README

CircleCI

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;
    }
}