12 lines
227 B
PHP
12 lines
227 B
PHP
|
|
<?php
|
|
echo object_input_tag($tax, $method, array(
|
|
'size' => 14,
|
|
'control_name' => $name,
|
|
'disabled' => $tax->getIsSystemDefault(),
|
|
));
|
|
|
|
if ($tax->getIsSystemDefault())
|
|
{
|
|
echo input_hidden_tag($name, $tax->$method());
|
|
} |