PHP code example of webfox / silverstripe-helpers

1. Go to this page and download the library: Download webfox/silverstripe-helpers 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/ */

    

webfox / silverstripe-helpers example snippets


class Page extends SiteTree {

    use HasOnAfterUpdateCMSFieldsExtensionPoint {
        HasOnAfterUpdateCMSFieldsExtensionPoint::__construct as __TraitConstruct;
    }
    
    public function __construct($record = null, $isSingleton = false, $model = null){
        
        $this->__TraitConstruct($record, $isSingleton, $model);
        
        //your custom things
        
        parent::__construct($record, $isSingleton, $model);
    }

}