PHP code example of briceburg / silverstripe-pageholder
1. Go to this page and download the library: Download briceburg/silverstripe-pageholder library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
briceburg / silverstripe-pageholder example snippets
class AttorneysPage extends Page {
private static $extensions = array(
'PageHolderExtension'
);
private static $excluded_children = array('Attorney');
}
class AttorneysPage extends Page {
private static $pageholder_tab = 'Root.Attorneys';
private static $pageholder_insertBefore = 'settings';
...
}
class Attorney extends ChildPage
{
private static $plural_name = 'Attorneys';
...
}