Чтобы пользователь c определенным паролем и логином заходил
Как можно помимо rbac разграничить пользователей
<?= $form->field($model, 'country_id')->dropDownList(ArrayHelper::map(Country::find()->all(),'id','title')) ?>
public static function getDropDown(){
return ArrayHelper::map(self::find()->all(),'id','title');
}
<?= $form->field($model, 'country_id')->dropDownList(Country::getDropDown()) ?>
Довольно хорошо знаю Yii2
$watermark = $imagine->open('/my/watermark.png');
$image = $imagine->open('/path/to/image.jpg');
$size = $image->getSize();
$wSize = $watermark->getSize();
$bottomRight = new Imagine\Image\Point($size->getWidth() - $wSize->getWidth(), $size->getHeight() - $wSize->getHeight());
$image->paste($watermark, $bottomRight);
class Tags extends ActiveRecord
{
public function getPages()
{
return $this->hasMany(Statjiblog::className(), ['id' => 'post_id'])->viaTable('{{%statjiblogtags}}', ['tag_id' => 'id']);
}
}
public function actionPage($slug){
$model = Tags::find()->andWhere(['slug'=>$slug])->one();
foreach($model->pages as $page){
echo $page->title;
}
}