friendsofvictoire / calculator-widget
Victoire DCMS 计算器小部件
2.0.1
2017-04-03 09:03 UTC
Requires
- php: >=5.3.3
- symfony/framework-bundle: ~2.8
- victoire/victoire: >=2.0.0|~3.0
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;
}
}