21309 Posts in 5738 Topics by 2603 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 218 Views |
-
Can't remove tabs from extended RedirectorPage

20 October 2012 at 5:29am
SS3.0.2
I'm able to extend RedirectorPage. But for some reason, I can't remove tabs that I've created for other pages. I've successfully done this on other extended pages like BlogHolder. I tried removing 'MenuTitle' just to test and that works fine. So I tried removing fields from my tabs instead of the whole tab and that didn't work either. Just wondering if anyone has experienced the same issue.
class RedirectorPageCustom extends DataExtension {
static $has_one = array(
);
function updateCMSFields(FieldList $fields) {
// REMOVE
$fields->removeByName('FancyList'); // NOT WORKING
$fields->removeByName('CallOut'); // NOT WORKING
$fields->removeByName('Widgets'); // NOT WORKING
$fields->removeByName('Snippets'); // NOT WORKING
$fields->removeByName('Metadata');
return $fields;
}}
thanks
-
Re: Can't remove tabs from extended RedirectorPage

24 October 2012 at 8:23pm
I assume this is because the extension is called before the RedirectorPage getCMSFields. BlogHolder has a bit of a hack to get the order correct.
https://github.com/silverstripe/silverstripe-blog/blob/master/code/BlogHolder.php#L40
Seems like a terrible workaround though..
-
Re: Can't remove tabs from extended RedirectorPage

25 October 2012 at 3:10am
Seems like it was working in pre-SS3 if I'm remembering correctly. Either way, thanks for the info Willr.
| 218 Views | ||
|
Page:
1
|
Go to Top |


