Top "Yii1.x" questions

Old version of PHP framework Yii.

Get current controller and action id in Yii

I want to force all users to log in before accessing pages of my site. I have followed Larry Ullman's …

php yii yii1.x
Basic Hidden field in yii

I'm trying to place data in hidden text in yii, but I don't know how. I need a similar code …

php yii field hidden yii1.x
yii: how to make a unique rule for two attributes

I have a table like this: (id, name, version, text). (name, version) is unique key, how can i make a …

yii yii1.x yii-validation
render a view from another controller, yii

The controller: controllers |-FooController.php |-BarController.php The views: view |-foo| | |-index.php | |-error.php | |-bar| |-index.php How to …

yii yii1.x
Yii multi page form wizard best practice

I am trying to build a multi-page form with Yii, but am quite new to PHP and Yii and am …

php yii yii1.x
addColumn yii migration position

I want to add a column at the seventh place in the table, I am using $this->addColumn('table_…

php yii migration yii1.x
How to bind array parameters in Yii framework?

I have below code: $inputs = "1,2,3,4,5"; $sql = "SELECT * FROM obj WHERE id IN(:input)"; $commond = Yii::app()->db->…

php yii yii1.x
Get base URL in Yii console application

How to get base URL in a Yii CConsoleApplication application? I tried Yii::app()->request->getBaseUrl(true) …

php yii console-application yii1.x
How add css class to CGridview cell (in Yii), related on another value

I have list of files. In array data provider i have fields: approved, filename, uploaded etc. I want to add …

gridview yii yii1.x
Select or Dropdown list from CActiveRecord in Yii

I have table types and i want to build selectbox with all values from this table In my controller i …

php yii yii1.x