Wiki

Displaying 11-20 of 467 result(s).

Yiinitializr: The Library

Created 28 days ago by Antonio RamirezOthers4 comments – viewed 3,134 times – ( +10 )
Introduction

How to use a component before every action of a controller

Created about a month ago by transistorTips1 comment – viewed 2,607 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.

How to implement an event and attach it in a behavior

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

Yet another implementation of CPhpAuthManager.

Created about a month ago by seenivasanHow-tos2 comments – viewed 2,733 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.

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

Created about a month ago by le_topTips0 comments – viewed 2,271 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.

Alternative folder structure for a standard Yii app

Created about a month ago by TrejderHow-tos4 comments – viewed 2,222 times – ( +3 )
I found a standard Yii app's protected folder structure nearly perfect. With a few simple moves and a little bit change to the code, I managed to bring it to the level, which I found as fully perfect. I want to share my point of view, in case someone would like to use this structure as well.

How to change Migration Table name and use defined prefix.

Created about a month ago by JorgeeHow-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

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

Implementing a Flat User Access System

Created 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.

How to use the official Yii installer for Composer

Created about a month ago by br0skHow-tos3 comments – viewed 3,087 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.