shked0wn/timeline-bundle
Composer 安装命令:
composer require shked0wn/timeline-bundle
包简介
Simple bundle that will create a nice cutomizable timeline for your symfony projects.
关键字:
README 文档
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.
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.
统计信息
- 总下载量: 140
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-11-13
