skobka/yii2-json-field Help you to define fields, that can contains json. Json in this fields would be automatically serialized and deserialized

extensionjsonfield

Yii2 JSON Field

Help you to define fields, that can contains json. Json in this fields would be automatically serialized and deserialized

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require skobka/yii2-json-field

or add

"skobka/yii2-json-field": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :


### Product.php

/**
 * @property object|array|null $field1  
 */
class Product extends AvtiveRecord {
   use JsonFieldTrait;

   public function behaviors()
   {
        return [
            'field1' => [
                'class' => JsonFieldBehavior::class,
                'dataField' => 'json_field_1', // this is the name of field in db table
            ],
        ];
   }
}

### ProductController.php
// saving 
$product = Product::findOne(['id' => 1]);

$product->field1 = new \StdClass();
$product->field1->foo = 'bar';
$product->save();

$product = Product::findOne(['id' => 1]);
print $product->field1->foo; // bar

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



v1.0.3 is the latest of 3 releases



Apache-2.0 license
Stats
3 github stars & 0 github forks
2 downloads in the last day
20 downloads in the last 30 days
1912 total downloads