承接 frostealth/yii2-relation-behavior 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

frostealth/yii2-relation-behavior

Composer 安装命令:

composer require frostealth/yii2-relation-behavior

包简介

Easy linking and sync relationships many-to-many and one-to-many

README 文档

README

Easy linking and sync relationships many-to-many.

Installation

Run the Composer command to install the latest stable version:

composer require frostealth/yii2-relation-behavior @stable

Behaviors

  • SyncRelationBehavior
  • EasyRelationBehavior

Usage

SyncRelationBehavior

Attach the behavior to your model:

public function behaviors()
{
    return [
        SyncRelationBehavior::className(),
    ];
}

Use the sync method to construct many-to-many associations. The sync method accepts an array of IDs.

$model->sync('categories', [2, 5, 9]);

EasyRelationBehavior

The EasyRelationBehavior extends the SyncRelationBehavior.

Attach the behavior to your model:

public function behaviors()
{
    return [
        [
            'class' => EasyRelationBehavior::className(),
            'relations' => ['categories'],
            'suffix' => 'ids', // by default
        ],
    ];
}

public function rules()
{
    return [
        ['categoriesIds', 'each', 'rule' => ['integer', 'integerOnly' => true]],
    ];
}

Just add your $suffix to the relation name and you will get associated ids:

$categoriesIds = $model->categoriesIds; // [1, 3, 4]

// linking
$categoriesIds = [2, 3, 5];
$model->categoriesIds = $categoriesIds;
$model->save();

Add control to view for managing related list.

Without extensions it can be done with multiple select:

<?php $categories = ArrayHelper::map(Category::find()->all(), 'id', 'name') ?>
<?= $form->field($model, 'categoriesIds')->dropDownList($categories, ['multiple' => true]) ?>

License

The MIT License (MIT). See LICENSE.md for more information.

统计信息

  • 总下载量: 16.39k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-11-06

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固