Beispiel #1
0
 public function init()
 {
     foreach (\cmsadmin\models\NavItem::fromModule('gallery') as $item) {
         $this->_dropdown[] = ['value' => $item->id, 'label' => $item->title];
     }
     foreach (\galleryadmin\models\Album::find()->asArray()->all() as $item) {
         $this->_alben[] = ['value' => $item['id'], 'label' => $item['title']];
     }
 }
Beispiel #2
0
 public function init()
 {
     foreach (\cmsadmin\models\NavItem::fromModule('news') as $item) {
         $this->_dropdown[] = ['value' => $item->id, 'label' => $item->title];
     }
 }