kilyakus/yii2-package-taggable

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

pkg:composer/kilyakus/yii2-package-taggable

dev-master 2020-10-23 17:29 UTC

This package is auto-updated.

Last update: 2025-09-29 02:42:57 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