Label.php 1.33 KB
<?php

namespace backend\models;

use common\modules\language\behaviors\LanguageBehavior;
use yii\db\ActiveQuery;
use yii\db\ActiveRecord;
use yii\web\Request;

/**
 * Class Label
 *
 * * From language behavior *
 * @property OrdersLabelLang    $lang
 * @property OrdersLabelLang[]  $langs
 * @property OrdersLabelLang    $object_lang
 * @property string         $ownerKey
 * @property string         $langKey
 * @property OrdersLabelLang[]  $model_langs
 * @property bool           $transactionStatus
 * @method string           getOwnerKey()
 * @method void             setOwnerKey(string $value)
 * @method string           getLangKey()
 * @method void             setLangKey(string $value)
 * @method ActiveQuery      getLangs()
 * @method ActiveQuery      getLang( integer $language_id )
 * @method OrdersLabelLang[]    generateLangs()
 * @method void             loadLangs(Request $request)
 * @method bool             linkLangs()
 * @method bool             saveLangs()
 * @method bool             getTransactionStatus()
 * * End language behavior
 */
class Label extends ActiveRecord
{

    public static function tableName()
    {
        return 'orders_label';
    }
    
    public function behaviors()
    {
        return [
            'language' => [
                'class' => LanguageBehavior::className(),
            ],
        ];
    }
}