Block Properties
Permalink
Is there anywhere that includes optional paramters for each core block type which we can put straight into a template? The following is for autonav, but I don't think it is exhaustive. I am really chasing code for page_list and search blocks.
<?php $bt = BlockType::getByHandle('autonav'); $bt->controller->displayPages = 'top'; $bt->controller->orderBy = 'display_asc'; $bt->controller->displaySubPages = 'none'; $bt->render('templates/header_nav'); ?>