Wiki

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

Yet another implementation of CPhpAuthManager.

Updated about a month ago by seenivasanHow-tos2 comments – viewed 2,726 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,636 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 67,512 times – ( +64 / -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,892 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,244 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,529 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,267 times – ( +3 )
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,255 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.

Using Google Maps in Yii Applications via Jquery

Updated about a month ago by bluyellHow-tos0 comments – viewed 2,183 times – ( +2 )

How to use the official Yii installer for Composer

Updated about a month ago by br0skHow-tos3 comments – viewed 3,086 times – ( +3 )
This way of using Composer is different from the Phundament 3 based wiki in that it is using the new official Composer installer for Yii. It is also only making use of Packagist not the packages at packages.phundament.com. This wiki doesn't aim to replace the Phundament 3 based wiki it is just another way of doing it and I really like the fact that it can use Packagist directly and not a separate repository.