yii2-taggable-behavior

This extension allows you to get functional for tagging.

  • 所有者: 2amigos/yii2-taggable-behavior
  • 平台:
  • 許可證: Other
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Taggable Behavior for Yii 2

Latest Version
Software License
Build Status
Coverage Status
Quality Score
Total Downloads

This extension provides behavior functions for tagging.

Installation

The preferred way to install this extension is through composer.

Either run

$ composer require 2amigos/yii2-taggable-behavior:~1.0

or add

"2amigos/yii2-taggable-behavior": "~1.0"

to the require section of your composer.json file.

Configuring

First you need to configure model as follows:

use dosamigos\taggable\Taggable;

class Tour extends ActiveRecord
{
    public function behaviors() {
        return [
            [
                'class' => Taggable::className(),
            ],
        ];
    }
}

Usage

First you need to create a tbl_tag (you can choose the name you wish) table with the following format, and build the
correspondent ActiveRecord class (i.e. Tag):

+-----------+, tbl_tag, +-----------+, id, frequency, name, +-----------+

After, if you wish to link tags to a certain ActiveRecord (lets say Tour), you need to create the table that will
link the Tour Model to the Tag:

+-------------------+, tbl_tour_tag_assn, +-------------------+, tour_id, tag_id, +-------------------+

Next, we need to configure the relationship with Tour:

/**
 * @return \yii\db\ActiveQuery
 */
public function getTags()
{
    return $this->hasMany(Tag::className(), ['id' => 'tag_id'])->viaTable('tbl_tour_tag_assn', ['tour_id' => 'id']);
}

Its important to note that if you use a different name, the behavior's $relation attribute should be changed
accordingly.

Finally, setup the behavior, and the attribute + rule that is going to work with it in our Tour class,
on this case we are going to use defaults tagNames:

/**
 * @inheritdoc
 */
public function rules()
{
    return [
        // ...
        [['tagNames'], 'safe'],
        // ...
    ];
}

/**
 * @inheritdoc
 */
public function behaviors()
{
    return [
        // for different configurations, please see the code
        // we have created tables and relationship in order to
        // use defaults settings
        Taggable::className(),
    ];
}

Thats it, we are now ready to use tags with our model. For example, this is how to use it in our forms together with our
Selectize Widget:


// On TagController (example)
// actionList to return matched tags
public function actionList($query)
{
    $models = Tag::findAllByName($query);
    $items = [];

    foreach ($models as $model) {
        $items[] = ['name' => $model->name];
    }
    // We know we can use ContentNegotiator filter
    // this way is easier to show you here :)
    Yii::$app->response->format = Response::FORMAT_JSON;

    return $items;
}


// On our form
<?= $form->field($model, 'tagNames')->widget(SelectizeTextInput::className(), [
    // calls an action that returns a JSON object with matched
    // tags
    'loadUrl' => ['tag/list'],
    'options' => ['class' => 'form-control'],
    'clientOptions' => [
        'plugins' => ['remove_button'],
        'valueField' => 'name',
        'labelField' => 'name',
        'searchField' => ['name'],
        'create' => true,
    ],
])->hint('Use commas to separate tags') ?>

As you can see, tagNames is the attribute (by default) from which we can access our tags and they are stored in it as
names separated by commas if you defined your attribute tagNames as string or null, if you define tagNames as an
array, it will be filled with the related tags.

Once you post a form with the above field, the tags will be automatically saved and linked to our Tour model.

Testing

$ ./vendor/bin/phpunit

Contributing

Please see CONTRIBUTING for details.

Credits

License

The BSD License (BSD). Please see License File for more information.

主要指標

概覽
名稱與所有者2amigos/yii2-taggable-behavior
主編程語言PHP
編程語言PHP (語言數: 1)
平台
許可證Other
所有者活动
創建於2014-01-14 12:25:39
推送於2019-04-09 10:57:23
最后一次提交2019-04-09 12:57:19
發布數4
最新版本名稱1.0.2 (發布於 2016-12-09 13:57:05)
第一版名稱0.1.0 (發布於 2014-05-17 21:05:39)
用户参与
星數83
關注者數27
派生數30
提交數82
已啟用問題?
問題數28
打開的問題數1
拉請求數7
打開的拉請求數0
關閉的拉請求數3
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?