Login   Register  
PHP Classes
elePHPant
Icontem

File: function.auriumform_open.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Alfred R. Baudisch  >  AuriumForm  >  function.auriumform_open.php  >  Download  
File: function.auriumform_open.php
Role: Auxiliary script
Content type: text/plain
Description: Another plugin for Smarty and AuriumForm integration
Class: AuriumForm
Validate and output forms using HTML or Smarty
Author: By
Last change:
Date: 2005-02-23 12:59
Size: 828 bytes
 

Contents

Class file image Download
<?php

/**
 * AuriumForm Smarty Integration
 * Opens a form with the given attributes
 *
 * Especial Cases:
 * - METHOD: you can use the alias 'm' for method and
 * 'p' for POST and 'g' for GET
 * E.g.: {auriumform_open m=p}
 *
 * - ACTION: you can use the alias 'a' for 'action'
 * E.g.: {auriumform_open a='bla.php'}
 *
 * @since Feb 17, 2005
 * @author Alfred Reinold Baudisch <alfred@auriumsoft.com.br>
 */
function smarty_function_auriumform_open($params, &$smarty)
{
    
/**
     * There is no AuriumForm class created yet, then import it
     */
    
if(!class_exists('AuriumForm'))
    {
        require_once 
'auriumform/class.auriumform.php';
        
$smarty->_AuriumForm =& new AuriumForm(array('no_template' => true));
    }
    
    return 
$smarty->_AuriumForm->OpenForm($params);
}

?>