DOCS Update readme and userguide for SS4, new screenshots, updated use examples

This commit is contained in:
Robbie Averill 2017-09-13 11:16:11 +12:00
parent 05fb6fa217
commit 47f1983955
7 changed files with 16 additions and 18 deletions

View File

@ -1,4 +1,4 @@
# Content Review module developer documentation # Content Review module developer documentation
## Configuration ## Configuration
@ -10,24 +10,25 @@ The module is set up in the `Settings` section of the CMS, see the [User guide](
In order for the contentreview module to send emails, you need to *either*: In order for the contentreview module to send emails, you need to *either*:
* Setup the DailyTask script to run daily via cron. See framework/tasks/ScheduledTask.php for more information on setup. * Setup the `ContentReviewEmails` script to run daily via a system cron job.
* Install the queuedjobs module, and follow the configuration steps to create a cron job for that module. Once installed, you can just run dev/build to have a job created, which will run at 9am every day by default. * Install the [queuedjobs](https://github.com/symbiote/silverstripe-queuedjobs) module and follow the configuration steps to create a cron job for that module. Once installed, you can just run `dev/build` to have a job created, which will run at 9am every day by default.
## Using ## Using
See [User guide](userguide/index.md)
See the [user guide](userguide/index.md).
## Testing ## Testing
cd to the site root, and run: cd to the site root, and run:
```sh ```sh
$ php vendor/bin/behat $ php vendor/bin/behat @contentreview
``` ```
or to test this module when used on a website: or to run the unit test suite:
```sh ```sh
$ php vendor/bin/behat contentreview/tests $ php vendor/bin/phpunit contentreview/tests
``` ```
## Migration ## Migration

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 KiB

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 158 KiB

After

Width:  |  Height:  |  Size: 129 KiB

View File

@ -4,22 +4,24 @@ summary: Mark pages in the CMS with a date and an owner for future reviews.
## Content review ## Content review
## Setting up ## Setting up
Global settings can be configured via the global settings admin in the CMS under the "Content Review" tab. Global settings can be configured via the global settings admin in the CMS under the "Content Review" tab.
This includes global groups, users, as well as a template editor that supports a limited number of variables. This includes global groups, users, as well as a template editor that supports a limited number of variables.
![settings](_images/content-review-siteconfig-settings.png) ![SiteConfig settings](_images/content-review-siteconfig-settings.png)
## Schedules ## Schedules
To set up content review schedules you need to log in as a user with the 'Set content owners and review dates' permission. This can either To set up content review schedules you need to log in as a user with the 'Set content owners and review dates' permission. This can either
be an administrator who has all permissions, or by giving a group the specific permission. be an administrator who has all permissions, or by giving a group the specific permission.
![](_images/content-review-permission.png) ![Content review permissions](_images/content-review-permission.png)
To set a content review schedule for a page go to `Settings > Content Review`. To set a content review schedule for a page go to `Settings > Content Review`.
![](_images/content-review-settings.png) ![Page content review settings](_images/content-review-settings.png)
CMS users without the permission to change the content review schedule can still see the settings CMS users without the permission to change the content review schedule can still see the settings
and previous reviews in the same view, but cannot change anything. and previous reviews in the same view, but cannot change anything.
![](_images/content-review-settings-ro.png) ![Read only view of page content review settings](_images/content-review-settings-ro.png)

View File

@ -42,13 +42,8 @@ $ composer require silverstripe/contentreview
You'll also need to run `dev/build`. You'll also need to run `dev/build`.
### Manual installation Run dev/build either via the web server by opening the URL `http://<your-host>/dev/build?flush` or
by running the dev/build via a CLI: `sake dev/build flush=1`
Download or clone the source code into the SilverStripe root folder. Rename the module folder
to `contentreview`.
Run dev/build either via the webserver by opening the url `http://<your-host>/dev/build` or
by running the dev/build via a CLI.
## Documentation ## Documentation