AuthHelper
This AuthHelper provide access to user information on view side. If you have used OthAuth helper before, this helper replicate exactly the same functionalities.
[Read more] MultivalidatableBehavior: Using many validation rulesets per model
In this article I present the MultivalidatableBehavior, which allow us to have multiple sets of validation rules for each model.
[Read more] Autofilling selectboxes aka ungrease your controllers!
Tired of populating the selectboxes in your form, from your controllers with:
$modelData = findAll(...)
$modelDataList = Set::combine(...)
$this->set('model_ids', $modelDataList);
I know i was!
How about not doing those tree lines of code for every model?
How about 0 lines of code in controller, and a simple property change on the selectbox? Yeah thats more like it!
[Read more] $modelData = findAll(...)
$modelDataList = Set::combine(...)
$this->set('model_ids', $modelDataList);
I know i was!
How about not doing those tree lines of code for every model?
How about 0 lines of code in controller, and a simple property change on the selectbox? Yeah thats more like it!
cPanel API component
A simple CakePHP component for cPanel XMLAPI calls ( http://www.cpanel.net/plugins/xmlapi/ ).
Requires cURL support.
[Read more] Requires cURL support.
TinyMCE helper
This is a basic helper to make it really easy to use TinyMCE inside CakePHP.
[Read more]
Latest Comments