Hey Guys,
I would like that the table created is not seen on the children pages. This is the tab:
static $has_one = array(
'Logo1' => 'Image',
'Logo2' => 'Image'
);
function getCMSFields() {
$fields = parent::getCMSFields();
$fields->addFieldToTab("Root.Content.Logo", new ImageField('Logo1'));
$fields->addFieldToTab("Root.Content.Logo", new ImageField('Logo2'));
return $fields;
}