Top "Yii" questions

Use for questions about any version of Yii, an open-source MVC framework for writing web 2.0 applications in PHP5+

Yii 2.0 How to generate form without <div class="form-group">?

<?php $form = ActiveForm::begin(['id' => 'contact-form']); ?> <?= $form->field($model, 'email', [ 'inputOptions' => [ 'placeholder' => 'Ihre …

php yii yii2
Yii2 require all Controller and Action to login

In my sitecontroller I write like this 'access' => [ 'class' => AccessControl::className(), 'rules' => [ [ 'actions' => ['login', 'error'], 'allow' =&…

php yii yii2
What is the difference between homeUrl and baseUrl in Yii framework?

What is the difference between homeUrl and baseUrl in Yii framework?

php yii
how to count $dataProvider items

how can i count data that will retrieved by $dataProvider ? i've tried to use this code, $dataProvider = new CActiveDataProvider('Model'); $…

yii
Yii: Multi-language website - best practices

I find Yii great framework, and the example website created with yiic shell is a good point to start... however …

php internationalization yii
Matching all values in IN clause

Is there a way to ensure all values in an IN clause are matched? Example: I can use IN as: …

mysql sql yii
Getting Current Controller ID in Yii

I want to get the current controller name that handles the current action. but the in my case I will …

php templates yii yii-components
Yii2 role management with rbac and database storage

I want to learn Yii2 membership and use Yii to store and retrieve roles using a database. I have read …

php yii yii2 yii-extensions rbac
Yii2 - How to get the current username or name from Yii::$app->user?

How do you add, or get, variables using Yii::$app->user->something? I don't want to get them …

php yii yii2 yii2-user
How to display rows of CGridView as a link

I want to display CGridView component with all records as a link to its related Update page. I want the …

gridview yii yii-components