Wiki

Displaying 421-430 of 483 result(s).

i18n for your model in just 1 line

Created 3 years ago by mintaoTutorials0 comments – viewed 8,674 times – ( +12 )
A simple trick to get the localized version of a model field is to add this little method to your models.
tags: i18n

How to setup RBAC with a php file

Created 3 years ago by bettorHow-tos12 comments – viewed 39,422 times – ( +24 / -4 )
In this cookbook I will attempt to explain how to use the lightweight version of Role-Based Access Control using a php file. This version does not use database but a php file and is controlled by CPhpAuthManager class.

Performance - A Guide For Best Practice

Created 3 years ago by Y!!Tutorials3 comments – viewed 11,940 times – ( +8 / -5 )
In this guide I will explain best practise regarding performance in MySQL, PHP and of course our loved Yii Framework. Since this is a complex topic, I will start with some basics and then expand this guide from time to time. Since this wiki can become big, you may click on View history - there you can see what changes have been made, so you don't miss anything.
tags: performance

Organize directories for applications with front-end and back-end using WebApplicationEnd behavior

Created 3 years ago by andy_sTutorials20 comments – viewed 45,176 times – ( +25 )
Previously there was described a way to build an application with front-end and back-end. I would like to continue this theme and suggest another way to organize directories using WebApplicationEnd behavior.

How to use ldap in UserIdentity for authentication

Created 3 years ago by BeerSercTutorials10 comments – viewed 21,119 times – ( +11 )
Yii does not have an LDAP class itself, but its very easy to implement LDAP in the stock UserIdentity class.

Creating a database-driven hierarchical Structure combined with CMenu and superfish

Created 3 years ago by thyseusTutorials8 comments – viewed 29,394 times – ( +15 )
Note: Please also take a look at the newer EMenu extension. This works even better that the deprecated CDropDownMenu!
tags: menu

Add information to Yii::app()->user by extending CWebUser

Created 3 years ago by atrandafirTutorials9 comments – viewed 56,966 times – ( +27 )
This little tutorial explains a way how you can retrieve more parameters from Yii::app()->user by adding a component that extends CWebUser and retrieves the user information from database table named User.

Using the configuration file, explain what can be configured.

Created 3 years ago by atrandafirTutorials0 comments – viewed 27,598 times – ( +18 )
The purpose of this post is to let anyone quickly find how to accomplish a configuration task, and list here all the posibilities of the config.php file and also link to pages that explain how is each thing implemented.

SQL Logging and Profiling in FireBug (Yii 1.1)

Created 3 years ago by mindplayTutorials2 comments – viewed 12,692 times – ( +6 )
During development, it's often very handy to have SQL logging and profiling.
tags: Logging

Reference: Model rules validation

Created 3 years ago by krillzipHow-tos4 comments – viewed 267,238 times – ( +88 )
This is a reference to be used for Model rule validation and is compiled from the Yii documentation and code. The purpose is to have all the information gathered in one place instead of scattered. This reference is not an intro. See The Definitive Guide to Yii, Declaring Validation Rules for a tutorial.