10 lines
350 B
PHP
10 lines
350 B
PHP
<?php
|
|
if (!$paczkomaty_pack->isAdminGeneratorPlainField())
|
|
{
|
|
echo input_tag('paczkomaty_pack[description]', !$sf_request->hasParameter('paczkomaty_pack[description]') ? $paczkomaty_pack->getDescription() : $sf_request->getParameter('paczkomaty_pack[description]'), array('size' => 80));
|
|
}
|
|
else
|
|
{
|
|
echo $paczkomaty_pack->getDescription();
|
|
}
|
|
?>
|