news/plugins/auto-author
dan 517fba452c (Grav GitSync) Automatic Commit from dan 2022-04-27 20:28:46 +12:00
..
.gitignore (Grav GitSync) Automatic Commit from dan 2022-04-27 20:28:46 +12:00
CHANGELOG.md (Grav GitSync) Automatic Commit from dan 2022-04-27 20:28:46 +12:00
LICENSE (Grav GitSync) Automatic Commit from dan 2022-04-27 20:28:46 +12:00
README.md (Grav GitSync) Automatic Commit from dan 2022-04-27 20:28:46 +12:00
auto-author.php (Grav GitSync) Automatic Commit from dan 2022-04-27 20:28:46 +12:00
auto-author.yaml (Grav GitSync) Automatic Commit from dan 2022-04-27 20:28:46 +12:00
blueprints.yaml (Grav GitSync) Automatic Commit from dan 2022-04-27 20:28:46 +12:00

README.md

Auto Author Plugin

The Auto Author Plugin is for Grav CMS. Automatically adds an author to frontmatter when creating a new page via Grav Admin plugin.

Usage

Whenever you create a new page via the admin plugin, an author will be automatically inserted in the frontmatter of the page. The author name is dependent on the configuration. It can be the author name from site.yaml or the fullname of the current admin user.

user/pages/02.my-new-page/default.md
---
title: 'My new page'
author: 'Joe Bloggs'
---

Installation

Installing the Auto Author plugin can be done in one of two ways. The GPM (Grav Package Manager) installation method enables you to quickly and easily install the plugin with a simple terminal command, while the manual method enables you to do so via a zip file.

GPM Installation (Preferred)

The simplest way to install this plugin is via the Grav Package Manager (GPM) through your system's terminal (also called the command line). From the root of your Grav install type:

bin/gpm install auto-author

This will install the Auto Author plugin into your /user/plugins directory within Grav. Its files can be found under /your/site/grav/user/plugins/auto-author.

Manual Installation

To install this plugin, just download the zip version of this repository and unzip it under /your/site/grav/user/plugins. Then, rename the folder to auto-author. You can find these files on GitHub or via GetGrav.org.

You should now have all the plugin files under

/your/site/grav/user/plugins/auto-author

NOTE: This plugin is a modular component for Grav which requires Grav and the Error and Problems to operate.

Configuration

Before configuring this plugin, you should copy the user/plugins/auto-author/auto-author.yaml to user/config/plugins/auto-author.yaml and only edit that copy.

Here is the default configuration and an explanation of available options:

# enables or disables the plugin
enabled: true
# true = use current admin user (fullname) or false = use site author name (default)
user: false

License

The MIT License (MIT)

Copyright (c) 2015 Sven Sanzenbacher

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.