silverstripe-framework/src/Forms/PrintableTransformation_TabSet.php

31 lines
680 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Forms;
/**
* Class representing printable tabsets
*/
class PrintableTransformation_TabSet extends TabSet
{
2016-11-29 00:31:16 +01:00
/**
* @param array $tabs
*/
public function __construct($tabs)
{
$this->children = $tabs;
CompositeField::__construct($tabs);
}
2016-11-29 00:31:16 +01:00
public function FieldHolder($properties = array())
{
// This gives us support for sub-tabs.
$tag = ($this->tabSet) ? "h2>" : "h1>";
$retVal = '';
foreach ($this->children as $tab) {
$retVal .= "<$tag" . $tab->Title() . "</$tag\n";
$retVal .= $tab->FieldHolder();
}
return $retVal;
}
}