Showing 21-40 of 219 items.

DB Driven CMenu (Widget)

Created 12 years ago by Preacher Preacher, updated 12 years ago by Preacher Preacher. 0 comments

Awhile ago I was trying to find a database driven CMenu system to add to my web applications. This always seemed to me that it would be a lot easier to manage if it where in a database. So the following is the results of that effort:

1 0
1
Viewed: 8 915 times
Version: 1.1
Category: Tutorials

Automatically get the SVN Revision Number of your Project

Created 12 years ago by jcagentzero jcagentzero, updated 12 years ago by jcagentzero jcagentzero. 1 comment

When you are handling so many projects and those projects are saved in different repository locations, you may find it very difficult to keep track all the versions and revisions manually and it will be much harder if you are developing in multiple repository branches.

3 0
4
Viewed: 17 796 times
Version: all
Category: Tutorials

Saving CGridView filter

Created 12 years ago by sefburhan sefburhan, updated 12 years ago by CeBe CeBe. 5 comments

In this tutorial we will try to save cgridview filter(search) with title etc. basically we want to save two forms data i.e one represents filters and other data about filters like title, description etc. You can define your own structure for filter saving table here are some basic steps

1 0
31
Viewed: 16 669 times
Version: 1.1
Category: Tutorials

Integrate Zend 2 XML writer into Yii

Created 12 years ago by Jonny Jonny, updated 12 years ago by CeBe CeBe. 0 comments

By Integrating the Zend 2.* framework into Yii you can quickly and painlessly generate XML outputs from your controllers. This will be helpful to anyone who has never done this before or only done it with Zend 1 as the introduction of namespaces can be strange when you first view them.

2 0
4
Viewed: 52 495 times
Version: 1.1
Category: Tutorials

Tags manipulation using Select2 in single field

Created 12 years ago by sefburhan sefburhan, updated 12 years ago by CeBe CeBe. 0 comments

Sometime its very important to perform many actions/operation with limited time frame for friendly use, select2 provides a lot of such functionality , I just extend it tags functionality to provide a quick use for developer to save time, as I spent much time on it.

2 0
35
Viewed: 52 414 times
Version: 1.1
Category: Tutorials

Extension Development (beginner)

Created 12 years ago by sefburhan sefburhan, updated 12 years ago by CeBe CeBe. 2 comments

To extend the functionality of you web application relative to your requirements you are supposed to use existing yii core libraries or use external libraries. There are some steps to ensure security, uniqueness, modularity, performance and to avoid rework in future.

Step 01: Have a Strategy

  • Is my extension just for fun/demonstration purposes or for everyday use in the real world? -...