friendsofvictoire/calculator-widget

Victoire DCMS 计算器小部件

安装: 305

依赖项: 0

建议者: 0

安全性: 0

星星: 0

关注者: 9

分支: 3

开放问题: 0

语言:JavaScript

类型:symfony-bundle

2.0.1 2017-04-03 09:03 UTC

This package is not auto-updated.

Last update: 2024-09-14 17:31:56 UTC


README

##本包的用途是什么

此包为您提供对计算器小部件的访问。使用此小部件,您可以定义参数和计算方法,以向用户提供实时结果。

##设置Victoire

如果您还没有设置Victoire,可以按照以下步骤进行此处设置

##安装包

运行以下composer命令

php composer.phar require friendsofvictoire/calculator-widget

###提醒

请记住在AppKernel中添加此包!

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            ...
            new Victoire\Widget\CalculatorBundle\VictoireWidgetCalculatorBundle(),
        );

        return $bundles;
    }
}