21 lines
No EOL
516 B
PHP
21 lines
No EOL
516 B
PHP
<?php
|
|
|
|
/*
|
|
* insert.formaddinputpart.php
|
|
*
|
|
* @(#) $Header: /opt2/ena/metal/forms/smarty/3/plugins/insert.formaddinputpart.php,v 1.1 2011/02/07 07:09:35 mlemos Exp $
|
|
*
|
|
*/
|
|
|
|
function smarty_insert_formaddinputpart($params, &$smarty)
|
|
{
|
|
$form = $smarty->getTemplateVars('form');
|
|
if(!IsSet($form)
|
|
|| !is_a($form, 'form_class'))
|
|
throw(new Exception('the "form" template variable was not assigned to the form object'));
|
|
$form->AddDataPart($params['data']);
|
|
$form->AddInputPart($params['input']);
|
|
return '';
|
|
}
|
|
|
|
?>
|