Wiki

Articles in category "tips", sorted by date (updated)X
Displaying 51-60 of 98 result(s).

Using events with CAction classes

Updated about a year ago by 张 迪Tips0 comments – viewed 7,530 times – ( +8 )
There are some good guides out there explaining how to work with events and the ways to attach them to your components, but none (that I know) explain the following way to configure your events with CAction classes on your controllers the following way.

Yii Security-extended guide

Updated about a year ago by bingjie2680Tips11 comments – viewed 9,774 times – ( +6 / -6 )
This article is called extended guide is because there is already a security guide in the Yii tutorial security section. but that guide is not complete in the sense that it does not rise the developers' attention to some other commonly happening attacks: SQL injection and magic URL, which can be major vulnerabilities in your application without much caring.

Understanding series articles

Updated about a year ago by GOshaTips0 comments – viewed 6,213 times – ( +16 )
Here are all wiki articles from "Understanding" series by Yii wiki contributors:

Como trasponer una lista creada con CHtml::checkBoxList

Updated about a year ago by rdjteamTips3 comments – viewed 4,990 times – ( +2 )
En ciertas ocasiones tenemos que lidiar con el tema de colocar una lista de checkboxes para hacer una seleccion especifica como es el caso de los dias de la semana para un calendario, para esta labor tenemos el comando CHtml::checkBoxList(), revisando un poco el funcionamiento de este temos los siguientes parametros:

Special $variables in CGridView and CListView

Updated about a year ago by Steve FriedlTips8 comments – viewed 21,860 times – ( +18 / -1 )
The popular CListView and CGridView widgets each take a data provider and iterate over each data object produced, calling the user's code to render each row one at a time, and most are familiar with the use of the $data variable to represent the current model object or array.

how to use github (un)official extension repo in your Yii project

Updated about a year ago by RusAlexTips4 comments – viewed 5,287 times – ( +4 )
Using a git submodule command in your yii project

Send asset folder path to a javascript of a widget

Updated about a year ago by sensorarioTips4 comments – viewed 10,034 times – ( +4 )
When you develop a widget, you could need one image that is in the assets folder, you can use it simply within a css. You can load a css or javascript script doing this:

Shrink Yii, help your IDE and speed up copying

Updated about a year ago by dckurushinTips11 comments – viewed 6,186 times – ( +9 / -8 )
In this little tip, I will help you to cut Yii size for about half

Using cache in CActiveDataProvider

Updated about a year ago by StammTips7 comments – viewed 9,127 times – ( +17 )
First param in CActiveDataProvider could be a string with model name or instance of class. So, you may use CActiveRecord::cache() for cache, but you need set third param to 2, because you should cache 2 queries: counting and get data.

Customizing Yii's formatting rules (extending CFormatter)

Updated about a year ago by HaenselTips0 comments – viewed 8,380 times – ( +14 )
CFormatter is one of Yii's core components and used to format values displayed in widgets like CGridView or CDetailView. All classic formats like numbers, text, urls or datetime are supported but you may have to use a formatting rule that isn't built in. Let's say we want to display arrays of strings (like tags associated with a product model). When using CDetailView we would usually make use of PHPs implode function to create a simple string value of all values in the $product->tags array.