shked0wn/timeline-bundle

Simple bundle that will create a nice cutomizable timeline for your symfony projects.

Installs: 135

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 1

Type:symfony-bundle

1.0.3 2015-11-14 16:23 UTC

This package is not auto-updated.

Last update: 2024-04-13 15:23:21 UTC


README

Synfony2 bundle to make nice looking and responsive timeline. This bundle provide a simple controller to render timeline and include a twig and CSS. If you are interested by more customization don't hesitate to post an issue with your request.

Latest Stable Version Total Downloads Latest Unstable Version License SensioLabsInsight

Exemple

Installation

composer require shked0wn/timeline-bundle

Add the bundle to your AppKernel.php

public function registerBundles()
{
     $bundles = array(
          [..]
          new Shked0wn\TimelineBundle\TimelineBundle(),
          [..]
     );
}

Include css file in your header

{% stylesheets 
    [..]
    'bundles/timelinebundle/css/style.css'
    [...]
    filter='cssrewrite' %}
    <link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}

Usage

First you want to create an array like the following in your controller.`

$timeline = array(
                array(
                    'title' => 'Title',
                    'date' => array(
                        'day' => 29,
                        'month' => 'JAN',
                        'year' => 2010
                    )
                ),
                array(
                    'title' => 'Title',
                    'text' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce rhoncus condimentum mauris,
                        non vehicula ligula malesuada quis. Fusce a neque quam. Nam quam leo, rutrum eget aliquet faucibus, vulputate
                        sit amet orci. Proin interdum urna sem, vel auctor nibh viverra sit amet. Aenean euismod mi sed nisl rutrum, eu
                        facilisis sapien rutrum. Sed imperdiet ultrices mauris eu rhoncus. Ut iaculis, neque eu sagittis fermentum, nunc dolor f
                        eugiat magna, sit amet posuere elit velit in odio.',
                    'date' => array(
                        'year' => 2012
                    )
                )
);

Then give your array to your view.

return $this->render('TimelineBundle:Default:index.html.twig', array('timeline' => $timeline));

And finally call the render controller in your twig with the array as param.

{% render(controller('TimelineBundle:Timeline:renderTimeline', { 'timeline': timeline })) %}

License

This bundle is under the MIT license.