Wiki

Sorted by date (updated)X
Displaying 31-40 of 469 result(s).

How to learn Yii?!

Updated about a month ago by yJeroenTutorials7 comments – viewed 37,307 times – ( +16 )
Here is a step by step To-Do list for Yii beginners. The list is an advice of what tutorials and documentation you can walk through to get a full understanding of the Yii Framework. These can be a help to learn Yii.

How to use a component before every action of a controller

Updated about a month ago by transistorTips1 comment – viewed 2,667 times – ( +1 )
I guess this is a tip on how to execute some code before every action in a controller, because I will tell you how I did it and maybe you can use the idea in your project.

Yet another implementation of CPhpAuthManager.

Updated about a month ago by seenivasanHow-tos2 comments – viewed 2,813 times – ( +4 )
In this wiki, I try to implement a simple authorization schema without putting much logic inside a file or into database table. We are constructing authorization hierarchy inside the controller. We are getting roles for the current user from database table and assigning only roles to user that are declared in the particular controller. We have brought down the work of loading of auth data at main application level to controller level. This way we have pulverised auth data for entire site into smaller units. Finally we are going to look at couple of examples.

How to implement an event and attach it in a behavior

Updated about a month ago by seb7How-tos0 comments – viewed 1,685 times – ( +2 )
This page explains how to implement an event and catch that event in a behavior.
tags: event, behavior

Understanding the view rendering flow

Updated about a month ago by JorgeeFAQs10 comments – viewed 68,093 times – ( +65 / -1 )
There is a lot of confusion surrounding what is happening behind the scenes when you render a view.

Implementing a Flat User Access System

Updated about a month ago by TrejderHow-tos0 comments – viewed 1,964 times – ( +6 )
This article shows a quick and easy way to implement flat user access control system. Flat means, that user access is controlled by level only, which is solution exactly opposite to complex RBAC access systems.

Limit a CGridView field to some preset length.

Updated about a month ago by le_topHow-tos1 comment – viewed 2,315 times – ( +8 )
Sometimes text inside a gridview column is just too long. That's why I figured out a way to make the column smaller while still providing the information.

Create image thumbnails with php_img_preview

Updated about a month ago by Anas AbuDayahTutorials5 comments – viewed 5,571 times – ( +3 )
This is another way to view images in your application and I like this way because it's simple and I think it's better performance than other.
tags: images, views

CGridView: Adding behaviors from configuration, and template items from behaviors to CGridView

Updated about a month ago by le_topTips0 comments – viewed 2,354 times – ( +4 )
Changing the way a CGridView is rendered from the configuration file, or through behaviors specified at the moment it is used, is handy to extend a CGridView without creating tons of different classes for it. I am surprised that this is not in the default implementation, so I made my default CGridView implementation.

How to change Migration Table name and use defined prefix.

Updated about a month ago by jambandHow-tos0 comments – viewed 1,283 times – ( +3 )
To accomplish the task of changing Migration table's name, by default tbl_migration, you need to add the following in your ./protected/config/console.php.