codecraft / silverstripe-pathfinder
Lead visitors to content with a succession of questions and answers that suggest content tagged by taxonomy terms
Installs: 1 023
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 3
Open Issues: 17
Type:silverstripe-vendormodule
Requires
- silverstripe/admin: ^1.0
- silverstripe/framework: ^4.0
- silverstripe/taxonomy: ^2.0
Requires (Dev)
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: ^3.0
Suggests
- symbiote/silverstripe-gridfieldextensions: Allows for questions, answers, and choices to be sorted
- 0.1.x-dev
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/qs-6.5.3
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/minimatch-3.0.8
- dev-dependabot/npm_and_yarn/async-2.6.4
- dev-dependabot/npm_and_yarn/nth-check-2.0.1
- dev-dependabot/npm_and_yarn/tmpl-1.0.5
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/ws-5.2.3
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/ssri-6.0.2
This package is auto-updated.
Last update: 2025-03-13 21:19:37 UTC
README
Introduction
This module enables CMS users to create a succession of questions and answers, which then suggests content to visitors using tags (taxonomy), acting as a pathfinder to pages on the site.
Requirements
See the "require" section of composer.json
Relies on silverstripe/silverstripe-taxonomy
Features
- Create paths of questions and answers that, when completed, suggest content to the user
- Customise Pathfinder content:
- Introduction wording
- Results found wording
- No Results found wording
- Support wording (Displayed on results page)
- Control content suggestions by tagging Pages with Taxonomy Terms
- Answers can be single-choice or multi-choice
- Questions can be organised in Flows, making CMS usage easier and diversifying pathing logic
- Pathfinders can be created as a Page or added as an Extension to existing models
- Users' progress is preserved when navigating away from a partially completed Pathfinder
- Multiple and customisable progress storage types
- Shortcodes provided to help author Pathfinder content
- Can be customised with extensions
Installation
composer require codecraft/silverstripe-pathfinder
Configuration
Progress Store
Pathfinder uses a ProgressStore
to dynamically track the progress of a user. This is how the Pathfinder knows which path the user is on, based on their precession of answers.
The default ProgressStore is the SessionProgressStore
, and stores progress in the user's PHP session.
To change the session store, update the ProgressStore
injector configuration, to assign the class
of the progress store you need:
SilverStripe\Core\Injector\Injector: CodeCraft\Pathfinder\Model\Store\ProgressStore: class: CodeCraft\Pathfinder\Model\Store\SessionProgressStore
Available Progress Stores
CodeCraft\Pathfinder\Model\Store\SessionProgressStore
- (Default) Stores progress in the PHP session. Expires when the user's session expiresCodeCraft\Pathfinder\Model\Store\RequestVarProgressStore
- Stores progress in an encoded URL request variable. Expires when the URL request variable is discarded.CodeCraft\Pathfinder\Model\Store\LocalStorageProgressStore
- Stores progress in Local storage. Expires when local storage is cleared.
Create a custom Progress Store
A custom progress store can be created by subclassing CodeCraft\Pathfinder\Model\Store\ProgressStore
and modifying the Injector
configuration.
Example subclass:
<?php use CodeCraft\Pathfinder\Model\Store\ProgressStore; /** * My custom progress store */ class MyProgressStore extends ProgressStore {}
Example Injector
configuration:
SilverStripe\Core\Injector\Injector: CodeCraft\Pathfinder\Model\Store\ProgressStore: class: MyProgressStore
Is this the same as dnadesign/silverstripe-elemental-decisiontree?
Main differences:
- Pathfinder can be used as a Page
- CMS users don't need to assign suggestions to each answer (Pathfinder uses a suggestion pattern of content tagged by taxonomy terms)
Versioning
This library follows Semver. According to Semver, you will be able to upgrade to any minor or patch version of this library without any breaking changes to the public API. Semver also requires that we clearly define the public API for this library.
All methods, with public visibility, are part of the public API. All other methods are not part of the public API. Where possible, we'll try to keep protected methods backwards-compatible in minor/patch versions, but if you're overriding methods then please test your work before upgrading.
Reporting Issues
Please create an issue for any bugs you've found, or features you're missing.
Credits
- Initial concept by James Ford and Stephen Makrogianni