PHP Classes

File: smarty/2/plugins/insert.formaddlabelpart.php

Recommend this page to a friend!
  Classes of Manuel Lemos   PHP Forms Class with HTML Generator and JavaScript Validation   smarty/2/plugins/insert.formaddlabelpart.php   Download  
File: smarty/2/plugins/insert.formaddlabelpart.php
Role: Auxiliary script
Content type: text/plain
Description: Smarty plug-in script to insert form input label parts
Class: PHP Forms Class with HTML Generator and JavaScript Validation
HTML forms generation and validation.
Author: By
Last change: Initial revision.
Date: 11 years ago
Size: 511 bytes
 

Contents

Class file image Download
<?php

/*
 * insert.formaddlabelpart.php
 *
 * @(#) $Header: /opt2/ena/metal/forms/smarty/2/plugins/insert.formaddlabelpart.php,v 1.1 2003/03/20 02:54:43 mlemos Exp $
 *
 */

function smarty_insert_formaddlabelpart($params, &$smarty)
{
    if(
method_exists($smarty,'get_template_vars'))
    {
       
$tpl_vars=&$smarty->get_template_vars();
       
$form=&$tpl_vars['form'];
    }
    else
       
$form=&$smarty->_tpl_vars['form'];
   
$form->AddDataPart($params['data']);
   
$form->AddLabelPart(array('FOR'=>$params['for']));
    return
'';
}

?>