定制 jguido/widget-bundle 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jguido/widget-bundle

Composer 安装命令:

composer require jguido/widget-bundle

包简介

This Bundle add a widget system for rendering data a generic way. It also permit a generation of widget files.

README 文档

README

composer require jguido/widget-bundle

Then add this bundle to your kernel (app/AppKernel.php) :

new WidgetBundle\WidgetBundle(),
new ApplicationWidgetBundle\ApplicationWidgetBundle(),

Add in app/config/routing.yml

bundle_widget:
    resource: "@WidgetBundle/Resources/config/routing.yml"
    prefix:   /

Add in app/config/config.yml in import section

- { resource: "@ApplicationWidgetBundle/Resources/config/widgets.yml" }

Add this line in the style declaration of your layout

<link href="{{ asset('bundles/widget/css/widget-render.css') }}" rel="stylesheet" media="screen" type="text/css"/>

Add this line in the javascript declaration of your layout

<script type="text/javascript" src="{{ asset('bundles/widget/js/Widget.js') }}"></script>

Usage

There is a command for generating files of the desired widget :

php bin/console generate:widget <widget_name>

The rendering of a widget is done like this

The simpliest way

{{ render_widget('widget.<widget_name>') }}

If the route of your widget needs parameters

{{ render_widget('widget.<widget_name>', {'param1': param1}) }}

But if you do so, you will have to update the route definition in the file of your bundle (in src/ApplicationWidgetBundle/Widget/your_widget)

Content of the widget is loaded with ajax calls, all the dom events are functionnals (window.onload, $(function){...});)

File structure : src -- ApplicationWidgetBundle ----Resources ------config --------widgets.yml (the widgets service definition) ------views (where the views generated are placed) ----Widget (inside all the widget (controller) class

Example (Use case)

You want to generate a bundle "test"

in console :

php bin/console generate:widget test

What i will have in the service definition (src/ApplicationWidgetBundle/Resources/config/widgets.yml):

services:

    widget.test:
        class: ApplicationWidgetBundle\Widget\TestWidget

Inside the widget class:

<?php


namespace ApplicationWidgetBundle\Widget;


use WidgetBundle\Base\BaseWidget;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;

class TestWidget extends BaseWidget
{

    /**
     * @param $params
     * @return mixed
     */
    protected function getData($params)
    {
        throw new \Exception("Not implemented");
    }

    /**
     * @param array|null $params
     * @return string
     */
    public function getUri(array $params = null)
    {
        return $this->generateUrl('path_widget_test', $params);
    }

    /**
     * @return Response
     * @internal param Request $request
     * @Route("/widgets/test/render", name="path_widget_test")
     */
    public function widgetAction()
    {
        return $this->render('ApplicationWidgetBundle:Test:test.html.twig');
    }
}

This TestWidget class will act as a common controller

Inside the views directory:

a sub directory called Test and inside a file test.html.twig

<div class="col-xs-12">
    This is widget Test
</div>

You will be able to render it through other twig views like this :

{{ render_widget('widget.test') }}

统计信息

  • 总下载量: 111
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GNU
  • 更新时间: 2016-10-15

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固