2014-03-06 19:57:21 +01:00
|
|
|
<?php
|
2014-11-06 16:11:29 +01:00
|
|
|
|
2014-03-06 19:57:21 +01:00
|
|
|
foreach ($object->customvars as $name => $value) {
|
2014-11-06 16:11:29 +01:00
|
|
|
|
2014-03-06 19:57:21 +01:00
|
|
|
printf(
|
2014-11-06 16:11:29 +01:00
|
|
|
'<tr><th>%s</th><td class="customvar">%s</td></tr>' . "\n",
|
2014-03-06 19:57:21 +01:00
|
|
|
$this->escape($name),
|
2014-11-06 16:11:29 +01:00
|
|
|
$this->customvar($value)
|
2014-03-06 19:57:21 +01:00
|
|
|
);
|
|
|
|
}
|
2014-11-06 16:11:29 +01:00
|
|
|
|