Simple content blocks system. Nothing fancy, easy to implement.
See composer.json
Add the following to your config.yml
(optional):
PageController:
extensions:
- Toast\Blocks\Extensions\PageControllerExtension
Use Page
or other class that extends SiteTree
.
In your Layout/Page.ss
template, add the following:
<% loop $ContentBlocks %>
$ForTemplate
<% end_loop %>
Toast\Blocks\Extensions\PageExtension
available_blocks:
- Toast\Blocks\TextBlock
Extend Block
to create a new block type.
<?php
class MyBlock extends Toast\Blocks\Block
{
private static $singular_name = 'My Block';
private static $plural_name = 'My Blocks';
private static $icon = 'mysite/images/blocks/custom.png';
private static $db = [
'Content' => 'HTMLText'
];
}
/themes/default/templates/Toast/Blocks/MyBlock.ss
:
<%-- Your block template here --%>
<h2>$Title</h2>
$Content
Through
tables for more advanced versioningModule rating system helping users find modules that are well supported. For more on how the rating system works visit Module standards
Score not correct? Let us know there is a problem