solutosoft/yii-multitenant
Composer 安装命令:
composer require solutosoft/yii-multitenant
包简介
The shared database used by all tenants
README 文档
README
This extension provides support for ActiveRecord MultiTenant.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist solutosoft/yii-multitenant
or add
"solutosoft/yii-multitenant": "*"
Usage
- Creates table with
tenant_idcolumn:
class m191023_101232_create_post extends Migration { /** * {@inheritdoc} */ public function up() { $this->createTable('post', [ 'id' => $this->primaryKey(), 'title' => $this->string()->notNull(), 'category_id' => $this->integer(), 'content' => $this->string() 'tenant_id' => $this->integer(), ]); $this->createTable('category', [ 'id' => $this->primaryKey(), 'name' => $this->string()->notNull(), 'tenant_id' => $this->integer(), ]); } }
- Adds
TenantInterfaceto user model:
use solutosoft\multitenant\MultiTenantRecord; class User extends MultiTenantRecord implements IdentityInterface, TenantInterface { /** * {@inheritdoc} */ public function getTenantId() { return // logic to determine tenant from current user } /** * Finds user by username attribute * This is an example where tenant filter is disabled */ public static function findByUsername($username) { return static::find()->withoutTenant()->where(['username' => $username]); } ... }
- Extends models with
tenant_idattribute fromMultiTenantRecordintead ofActiveRecord:
use solutosoft\multitenant\MultiTenantRecord; class Post extends MultiTenantRecord { ... } class Category extends MultiTenantRecord { ... }
Now when you save or execute some query the tenant_id column will be used. Example:
// It's necessary the user will be logged in $posts = \app\models\Post::find()->where(['category_id' => 1])->all(); // SELECT * FROM `post` WHERE `category_id` = 1 and `tenant_id` = 1; $category = \app\models\Category([ 'name' => 'framework' ]); $category->save(); // INSERT INTO `category` (`name`, `tenant_id`) values ('framework', 1);
统计信息
- 总下载量: 2.09k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2019-04-29