1. Go to this page and download the library: Download silverstripe/lumberjack 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/ */
silverstripe / lumberjack example snippets
namespace MyModule\PageTypes;
use Page;
use SilverStripe\Lumberjack\Model\Lumberjack;
class NewsHolder extends Page
{
private static $extensions = [
Lumberjack::class,
];
private static $allowed_children = [
NewsArticle::class,
NewsPage::class,
];
}
namespace MyModule\PageTypes;
use Page;
class NewsArticle extends Page
{
private static $show_in_sitetree = false;
private static $allowed_children = [];
}
namespace MyModule\PageTypes;
use Page;
class NewsPage extends Page
{
private static $show_in_sitetree = true;
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.