FancyBox Bundle for Symfony2
Current Version
fancyBox 2.1.4, (*1)
Installation
Add bundle to your composer.json file
``` js
// composer.json, (*2)
{
"require": {
// ...
"uran1980/fancybox-bundle": "*"
}
}, (*3)
### Add bundle to your application kernel
``` php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Uran1980\FancyBoxBundle\Uran1980FancyBoxBundle(),
// ...
);
}
Download the bundle using Composer
``` bash
$ php composer.phar update uran1980/fancybox-bundle, (*4)
### Install assets
Given your server's public directory is named "web", install the public vendor resources
``` bash
$ php app/console assets:install web
Optionally, use the --symlink attribute to create links rather than copies of the resources, (*5)
``` bash
$ php app/console assets:install --symlink web, (*6)
## Usage
Refer to the desired files in your HTML template, e.g.
``` html
<link rel="stylesheet" href="{{ asset('bundles/uran1980fancybox/js/fancybox/source/jquery.fancybox.css') }}">
Licenses
Refer to the source code of the included files for license information, (*7)
References
- http://www.fancyapps.com/fancybox/
- http://symfony.com