Wiki

Displaying 41-50 of 483 result(s).

Send mail using YiiMail extension

Created 3 months ago by RKATutorials1 comment – viewed 6,170 times – ( +2 )
Let me show a simpe example to send mail using YiiMail extension in 5 steps. It also includes any template view if required along with the content.
tags: YiiMail

Using Grunt for deploying client scripts

Created 3 months ago by Chris83How-tos8 comments – viewed 3,773 times – ( +6 )
For a long time I have struggled to find a suitable tool for doing server tasks such as compiling LESS files, concatenating and minifying of JavaScript files and copying the minified JavaScript files. While most of these tasks can be done with Yii extensions I would still not recommend using them because it requires you to include these extensions in your project, and therefore also deploying them in your production environment.

A simple way to get Yii client-side form validation run when submitting by ajax

Created 3 months ago by nlacTutorials2 comments – viewed 4,915 times – ( +5 )
A time ago i've met the issue that Yii doesn't run any client-side form validation when submitting the form by CHtml::ajaxSubmitButton. The small javascript below helps to fix it.

Open Dialog from ajax content

Created 3 months ago by TouzasHow-tos1 comment – viewed 4,637 times – ( +3 / -1 )
This tutorial will show you how to create Ajax dialog. It's very simple code.

Custom Login Error Messages

Created 3 months ago by whoopassTutorials0 comments – viewed 6,256 times – ( +7 )
The Yii Framework is very powerful and it provides a lot of functionality right from the pre-built webapp. One of the nice things that is already established for you as a developer is the Login authentication. While the default configuration simply sets it up to run against an array of hard coded usernames and passwords, the Yii Blog Tutorial provides a how to in connecting that login authentication method to a database so you can run your logins against the registered users. Talk about sweet deal.

Yii for beginners 2

Created 3 months ago by rackyczTutorials2 comments – viewed 11,145 times – ( +21 )
Hi :-) Is that you again? Welcome !! :-)
tags: Created

Adding a date range search for CGridView the easy way

Created 3 months ago by mikewalenTips2 comments – viewed 4,562 times – ( +7 )
After a lot of research, everything I found on adding date range searching to a CGridView advanced search form seemed to involve adding two new public variables (e.g. $date_from, $date_to), 'safe' rules for the new variables, and a rather chunky if/elseif/else check in the search() method. This probably isn't a hassle for most, but because many of the tables in my database contain two or three and sometimes four date columns (e.g. date_created, date_modified, date_deleted etc.), it meant I was having to add up to eight public variables, the corresponding safe rules, and modifying the search() criteria for each date attribute. So, I set about creating a better way and I thought I'd share my work with the community.

Adding a link to a CDataColumn

Created 3 months ago by le_topTips4 comments – viewed 3,075 times – ( +3 )
Backoffice Grid Views often list information like Posts for a blog while showing at the same time linked information like the User who wrote that post. For more efficiency, it is appropriate that the User is displayed as a link to the User detail page.

Integrating HybridAuth directly into Yii without an extension

Created 3 months ago by biz devHow-tos3 comments – viewed 4,740 times – ( +10 )
This article tries to explain the steps required in integrating the HybridAuth into Yii directly, without using an extension.

Patching PHP code (used as a library) without changing the original code!

Created 3 months ago by le_topTips0 comments – viewed 1,876 times – ( +3 )
The article Fixing extensions without modifying their code reminded me of another patching technique that I used. My conviction and a hard look on the web had led me to an article Redefine PHP class methods or class giving me a head start to do what I wanted: patching third party code without touching the original to allow easy upgrades.
tags: patch, patching