friendsofvictoire / simplecontactform-widget
该包已被弃用且不再维护。没有建议的替代包。
Victoire DCMS 简单联系表单小部件
2.1.1
2017-04-03 12:42 UTC
Requires
- php: >=5.5.9
- appventus/shortcuts-bundle: dev-master
- appventus/spoolmailerbundle: ~1.0
- appventus/swiftmailerdbbundle: ~1.0
- symfony/framework-bundle: ~2.8|~3.0
- victoire/victoire: >=2.0.0|~3.0
This package is not auto-updated.
Last update: 2021-12-21 22:43:06 UTC
README
Victoire DCMS 简单联系表单包
##本包的用途是什么
本包提供了访问 简单联系表单小部件 的权限。使用此小部件,您可以在页面上安装页眉菜单、页脚菜单或直接在页面上安装菜单。
##设置 Victoire
如果您尚未设置,可以按照以下步骤进行 设置
##安装简单联系表单包
运行以下 composer 命令
php composer.phar require friendsofvictoire/simplecontactform-widget
###提醒
不要忘记在您的 AppKernel 中添加此包!
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\SimpleContactForm\VictoireSimpleContactFormBundle(),
);
return $bundles;
}
}