disable behavior

Hi, i has blameable behavior and timestamp behavior set in my active record class.


[

                 'class' => BlameableBehavior::className(),

                 'createdByAttribute' => 'created_by',

                 'updatedByAttribute' => 'updated_by',

             ],

             'timestamp' => [

                 'class' => 'yii\behaviors\TimestampBehavior',

                 'attributes' => [

                     ActiveRecord::EVENT_BEFORE_INSERT => ['created_at', 'updated_at'],

                     ActiveRecord::EVENT_BEFORE_UPDATE => ['updated_at'],

                 ],

             ],

How can i make this behavior doesnt execute in certain condition?

I’m not sure, just read the documentation. Perhaps with detachBehavior?