2017 © Pedro PelĂĄez
 

symfony-bundle media-bundle

Symfony ArmetizMediaBundle

image

armetiz/media-bundle

Symfony ArmetizMediaBundle

  • Tuesday, January 22, 2013
  • by armetiz
  • Repository
  • 1 Watchers
  • 2 Stars
  • 74 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

ArmetizMediaBundle

project status Build Status, (*1)

A Media Manager Bundle., (*2)

Todo

Do something to provide an automatic CDN http://domain.tld/medias/ Add "base_folder: medias/" Use it to Gaufrette Adapter & CDN, (*3)

Move "namespace" from Provider to Context. Tell the MediaManager to use Context params on selected Provider, (*4)

L'utilisation d'un "transformer.null" permet d'utiliser les traitements par défaut du Provider sur different format, (*5)

Enregistrer le context & le provider au sein du Media directement : eviter la detection automatique du context & du provider. Cela permet aussi d'utiliser un Media dans plusieurs contexts sans devoir définir de ClassEntity., (*6)

Rendu de vue, (*7)

options = { transformer: "thumbnail", transformer_options: { //Optional, use default transformer option and merge with it engine: gd } };, (*8)

mediaRender (monMedia, "format_name", options);, (*9)

//Numerosus Pour choisir le type de rendu, utiliser les options de rendu avec un Helper Twig. Cela va eviter de compliquer le dévleoppement du MediaManager avec la configuration des formats par Provider.. Ce qui allourdit la configuration énormement, (*10)

Installation

Installation is a quick 3 step process:, (*11)

  1. Download ArmetizMediaBundle using composer
  2. Enable the Bundle
  3. Configure your application's config.yml

Step 1: Download ArmetizMediaBundle using composer

Add ArmetizMediaBundle in your composer.json:, (*12)

{
    "require": {
        "armetiz/media-bundle": "*"
    }
}

Now tell composer to download the bundle by running the command:, (*13)

``` bash $ php composer.phar update armetiz/media-bundle, (*14)


Composer will install the bundle to your project's `vendor/armetiz` directory. ### Step 2: Enable the bundle Enable the bundle in the kernel: ``` php <?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Armetiz\MediaBundle\ArmetizMediaBundle(), ); }

Step 3: Configure your application's config.yml

Finally, add the following to your config.yml, (*15)

``` yaml, (*16)

app/config/config.yml

armetiz_media: filesystems: fake: id: fake.service cdns: local: base_url: %website_url%/medias contexts: default: providers: armetiz.media.provider.youtube: ~ armetiz.media.provider.image: formats: annexe_display: transformer: armetiz.media.transformer.image_to_thumbnail formats: thumbnail: {width: 512}, (*17)


## Configuration This bundle can be configured, and this is the list of what you can do : - A default storage exists. The path is "web/medias". - Context can take provider defined anywhere (see above: app.media.provider_foo) - Context can take many provider. Each one handle a specific media. Is many provider can handle a media, the defined first will be choosen **Note:** ## Usage #Twig Some helpers have been created to Twig. In fact, you can : render the media using templates, get the raw media, and uri or a simple path. ``` yaml {{ media(thumbnail) }} {{ media(thumbnail, {template: foo}) }} {{ mediaPath(thumbnail) }} {{ mediaUri(thumbnail) }} {{ mediaRaw(thumbnail) }}

Context

A context is a simple mapping between an Media & Providers., (*18)

Provider

A provider is the specific manager for a specific Media. It can be a FileProvider, YoutubeProvider, FlickrProvider, ImageProvider... Existing type : * file (which is the default) * image * youtube * dailymotion * vimeo * google maps, (*19)

Note: If you define more than one provider for a single context. Put the more restrictive on top !, (*20)

The Versions

22/01 2013

dev-master

9999999-dev

Symfony ArmetizMediaBundle

  Sources   Download

BSD

The Requires

 

media management

02/11 2012

1.0.5

1.0.5.0

Symfony ArmetizMediaBundle

  Sources   Download

BSD

The Requires

 

media management

16/10 2012

1.0.4

1.0.4.0

Symfony ArmetizMediaBundle

  Sources   Download

The Requires

 

media management

16/10 2012

1.0.3

1.0.3.0

Symfony ArmetizMediaBundle

  Sources   Download

The Requires

 

media management