silverstripe-australia / inlinehelp
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 5
Type:silverstripe-module
Requires
Replaces
This package is not auto-updated.
Last update: 2022-02-01 13:04:15 UTC
README
IMPORTANT
This is no longer actively maintained, however, if you're interested in adopting it, please let us know!
SilverStripe Inline Help Module
Maintainer Contacts
- Tom Brewer-Vinga (tom@symbiote.com.au)
Requirements
- SilverStripe 3.2+
Documentation
Changelog
1.0
- Updated to SilverStripe 3.2
- Earlier versions of SilverStripe 3 have not been tested
Known Bugs
- The displayed fields in the admin section under the tab "Attach To" display incorrectly with the selected radio button when the item is dynamically loaded
Installation Instructions
- Place this directory in the root of your SilverStripe installation.
- If cloned or using the zip file, change the directory to just
inlinehelp
- Add the following lines of code to your Page init function
if($this->dataRecord) {
$this->dataRecord->extend('onPageInit', $this);
} else {
singleton('SiteTree')->extend('onPageInit', $this);
}
- Visit yoursite.com/dev/build to rebuild the database.