Files
grzanieplus.pl/plugins/stTaxPlugin/modules/stTaxBackend/templates/_vat.php
2025-03-12 17:06:23 +01:00

14 lines
232 B
PHP

<?php
echo object_input_tag($tax, $method, array(
'size' => 7,
'control_name' => $name,
'disabled' => $tax->getIsSystemDefault(),
));
if ($tax->getIsSystemDefault())
{
echo input_hidden_tag($name, $tax->$method());
}
?> %