コード例 #1
0
 public function init()
 {
     $this->name = \Yii::t('skeeks/shop/app', 'Elements');
     $this->modelShowAttribute = "name";
     $this->modelClassName = ShopCmsContentElement::className();
     parent::init();
 }
コード例 #2
0
ファイル: ShopProduct.php プロジェクト: skeeks-cms/cms-shop
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTradeOffers()
 {
     return $this->hasMany(ShopCmsContentElement::className(), ['parent_content_element_id' => 'id'])->orderBy(['priority' => SORT_ASC]);
 }