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');
?>

 
griebel replied on at Permalink Reply
griebel
Create a block in Concrete, and locate the data in the bt*blockname table (database). You can then use bt->controller->database_fieldname->value.