Wiki

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

Yiinitializr: The Library

Updated about a month ago by Antonio RamirezOthers4 comments – viewed 3,317 times – ( +11 )
Introduction

How to learn Yii?!

Updated about a month ago by yJeroenTutorials7 comments – viewed 37,461 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,720 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,865 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,712 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,488 times – ( +66 / -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 2,004 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,350 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,612 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,399 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.