= sfSavvy plugin = == Overview == This plugin is my first contribution to the symfony project, which is a very promissing project, that in my opinion coming from 5 years working with the Java platform. Basically this plugin contains only one helper for now, its name is Savvy and it contains 4 functions. See examples below. Note: php documentaion included. == Installation == To install sfHelperExample: {{{ symfony plugin-install local|global symfony/sfSavvyPlugin }}} == Usage == The sfSavvyHelper plugin gives you access to four helper functions "getSimpleTable()", "getEditForm()", "saveFormData()", and "getDeleteForm()": {{{ <?php use_helper('Savvy') ?> <?php echo getSimpleTable($models, null, null); ?> }}} {{{ <?php use_helper('Savvy') ?> <?php echo getEditForm($model, null, null); ?> }}} {{{ <?php use_helper('Savvy') ?> <?php echo getDeleteForm($models, 'Are You Sure You Want To Delete This Item?', null); ?> }}} == License == For the full copyright and license information, please view the LICENSE file that was distributed with this source code.