22 lines
		
	
	
		
			352 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			352 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace backend\modules\achievements\models;
 | 
						|
 | 
						|
use Yii;
 | 
						|
use common\models\FieldsValueNew;
 | 
						|
 | 
						|
class Achievement extends \common\models\Achievement
 | 
						|
{
 | 
						|
 | 
						|
    public $fields;
 | 
						|
 | 
						|
    public function behaviors()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'log' => [
 | 
						|
                'class' => \common\behaviors\LogBehavior::class,
 | 
						|
            ]
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |