View file IPS Community Suite 4.7.8 NULLED/admin/install/html/forms/row.phtml

File size: 677B
<ips:template parameters="$langKey, $element, $desc, $warning, $required = FALSE, $error=NULL, $prefix=NULL, $suffix=NULL, $id=NULL, $object=NULL, $form=NULL" />
<li {{if $id !== NULL}}id="{$id}"{{endif}} class='ipsFieldRow'>
	<label class='ipsFieldRow_label {{if $error}}error{{endif}}'>
		{lang="$langKey"} {{if $required}}<span class='ipsFieldRow_required'>{lang="required"}</span>{{endif}}
	</label>
	<div class='ipsFieldRow_content'>
		{$prefix|raw}
		{$element|raw}
		{$suffix|raw}
		{$desc|raw}
		{$warning|raw}
		<br />
		{{if $error}}
			<span class='ipsType_warning'>{lang="$error"}</span>
		{{else}}
			<span class='ipsType_warning'></span>
		{{endif}}
	</div>
</li>