开发者

The module "taggableComplete" is not enabled

开发者 https://www.devze.com 2023-01-21 09:26 出处:网络
I\'m trying to add the tag widget from the plugin sfDoctrineActAsTa开发者_如何转开发ggablePlugin

I'm trying to add the tag widget from the plugin sfDoctrineActAsTa开发者_如何转开发ggablePlugin

I've added "_tag" to my configuration.yml, and in _tag.php I wrote :

<?php include_component('taggableComplete','tagWidget', array('object' => $form->getObject())) ?>

But all I get now is the following error :

"The module "taggableComplete" is not enabled"

What am I missing ?


You have to enable modules you want to use after installing a plugin.

tagWidget component is defined in taggableComplete module. As it's a module from the plugin you have explicitly enable it.

You can do it in your application's settings.yml file:

all:
  .settings:
    enabled_modules: [default, taggableComplete]
0

精彩评论

暂无评论...
验证码 换一张
取 消