PHP code example of fromholdio / silverstripe-no-edit-message
1. Go to this page and download the library: Download fromholdio/silverstripe-no-edit-message 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/ */
fromholdio / silverstripe-no-edit-message example snippets
public function getCMSFields()
{
if ($this->doShowNoEditMessage() && Controller::curr() instanceof LeftAndMain) {
return $this->getNoEditCMSFields();
}
# ... any other regular code.
}
public function getSettingsFields()
{
if ($this->doShowNoEditMessage() && Controller::curr() instanceof LeftAndMain) {
return $this->getNoEditCMSFields();
}
# ... any other regular code.
}