Einchecken des OnlineStands
This commit is contained in:
10
administrator/templates/cs_l1/tpl_form.php
Normal file
10
administrator/templates/cs_l1/tpl_form.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<form action="<?php echo $this -> _data[ 'action' ]; ?>" method="<?php echo $this -> _data[ 'method' ]; ?>" class="<?php echo $this -> _data[ 'class' ]; ?>">
|
||||
<?php if( !empty($this->_error) ) { echo '<div class="error">'; foreach($this->_error as $error ) { echo $this->_lang['error'][$error]; } echo '</div>'; } foreach ( $this -> _data[ 'elems' ] as $element )
|
||||
{
|
||||
$elem = clone( $this );
|
||||
$elem -> setTemplate( $element[ 'tag_name' ] );
|
||||
$elem -> setData( $element );
|
||||
echo $elem -> output( );
|
||||
}
|
||||
?>
|
||||
</form>
|
||||
Reference in New Issue
Block a user