Файл: contao-3.5.8/system/modules/core/templates/forms/form_submit.xhtml
Строк: 15
<?php if ($this->tableless): ?>
<div class="submit_container<?php if ($this->class) echo ' ' . $this->class; ?>">
<?php $this->block('field'); ?>
<?php if ($this->src): ?>
<input type="image" src="<?= $this->src ?>" id="ctrl_<?= $this->id ?>" class="submit<?php if ($this->class) echo ' ' . $this->class; ?>" title="<?= specialchars($this->slabel) ?>" alt="<?= specialchars($this->slabel) ?>"<?= $this->getAttributes() ?> />
<?php else: ?>
<input type="submit" id="ctrl_<?= $this->id ?>" class="submit<?php if ($this->class) echo ' ' . $this->class; ?>" value="<?= specialchars($this->slabel) ?>"<?= $this->getAttributes() ?> />
<?php endif; ?>
<?php $this->endblock(); ?>
</div>
<?php else: ?>
<tr class="<?= $this->rowClass ?>">
<td class="col_0 col_first"> </td>
<td class="col_1 col_last">
<div class="submit_container">
<?php $this->block('field'); ?>
<?php if ($this->src): ?>
<input type="image" src="<?= $this->src ?>" id="ctrl_<?= $this->id ?>" class="submit<?php if ($this->class) echo ' ' . $this->class; ?>" title="<?= specialchars($this->slabel) ?>" alt="<?= specialchars($this->slabel) ?>"<?= $this->getAttributes() ?> />
<?php else: ?>
<input type="submit" id="ctrl_<?= $this->id ?>" class="submit<?php if ($this->class) echo ' ' . $this->class; ?>" value="<?= specialchars($this->slabel) ?>"<?= $this->getAttributes() ?> />
<?php endif; ?>
<?php $this->endblock(); ?>
</div>
</td>
</tr>
<?php endif; ?>