Wiki

Articles in category "how-tos", sorted by date (updated)X
Displaying 11-20 of 182 result(s).

Simple Share Widget for Facebook, twitter and google+

Updated 26 days ago by softarkHow-tos0 comments – viewed 9,645 times – ( +9 )
This widget will show a Facebook "like" button and "comments" box together with "tweet" button and "google plusone" button on your page.

How to set up Unicode

Updated 26 days ago by Roman SolomatinHow-tos9 comments – viewed 35,796 times – ( +16 )
To fix issues with display of special language characters once and for all there's a solution: use Unicode UTF-8 everywhere. If everything is set up to use Unicode, you can use mostly every language in your application.
tags: i18n, unicode

Client-side form validation using Twitter Bootstrap's Popovers

Updated 26 days ago by TrejderHow-tos0 comments – viewed 7,025 times – ( +3 )
This article explains how to easily turn standard text-line validation errors into beautifully and professionally looking Twitter Bootstrap's Popovers.

Alternative folder structure for a standard Yii app

Updated 27 days ago by TrejderHow-tos4 comments – viewed 2,281 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.

Integrating HybridAuth directly into Yii without an extension

Updated 27 days ago by biz devHow-tos2 comments – viewed 3,836 times – ( +8 )
This article tries to explain the steps required in integrating the HybridAuth into Yii directly, without using an extension.

Implementing menu items with progress (wait) dialog

Updated 28 days ago by TrejderHow-tos0 comments – viewed 2,434 times – ( +1 )
This article shows one of possible ways to implement menu items (as well as links), which displays a progress / wait dialog and are redirecting browser to destination URL in the same time. This is especially useful, for links or routes that are know to be loaded for a prolonged period of time (i.e. getting a lot of data from database).

Yet another implementation of CPhpAuthManager.

Updated about a month ago by seenivasanHow-tos2 comments – viewed 2,813 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,685 times – ( +2 )
This page explains how to implement an event and catch that event in a behavior.
tags: event, behavior

Implementing a Flat User Access System

Updated about a month ago by TrejderHow-tos0 comments – viewed 1,964 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,315 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.