kilyakus / yii2-package-taggable
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- kilyakus/yii2-widget-selectize: *
- yiisoft/yii2: >=2.0.0
This package is auto-updated.
Last update: 2025-03-01 00:29:42 UTC
README
If u are using yii2-module-base, just import "kilyakus\package\taggable\TaggableModule" on the modules page
In all other cases:
Add this to your config:
'tags' => [
'class' => 'kilyakus\package\taggable\TaggableModule',
],
and use '/tags/list/index?query=' link to get tags
Or
Add this to your controller.
public function actions()
{
return [
'list' => [
'class' => \kilyakus\package\taggable\actions\SearchAction::className()
]
];
}
and use '/...(your controller page)/list/index?query=' link to get tags