Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomas-lebeau/kirby-aristotheme-support-widget
Displays a widget in the kirby panel's dashboard showing support options.
https://github.com/thomas-lebeau/kirby-aristotheme-support-widget
Last synced: 26 days ago
JSON representation
Displays a widget in the kirby panel's dashboard showing support options.
- Host: GitHub
- URL: https://github.com/thomas-lebeau/kirby-aristotheme-support-widget
- Owner: thomas-lebeau
- Created: 2015-08-12T14:00:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-12T14:00:55.000Z (over 9 years ago)
- Last Synced: 2024-10-26T22:01:59.654Z (2 months ago)
- Language: PHP
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Aristotheme Support Widget
Displays a widget in the kirby panel's dashboard showing support options.## Options
All available options can be set in your config file in `/site/config/config.php` like this:```php
c::set('option', 'value');
```available options are:
Option | Type | Description
-------------------------|---------|------------
aristotheme.widget | Boolean | Display the Aristotheme widget in the dashboard.
aristotheme.widget.title | String | The Widget Title
aristotheme.widget.links | array() | The links to be displayed in the widget.## Adding links
Links can be setup with the `aristotheme.widget.links` option in your `/site/config/config.php`
Links are simple associative arrays with 3 fields required fields: **label**, **text** and **href**.**Example:**
```php
c::set('aristotheme.widget.links', array(
array(
"label" => "Support",
"text" => "On our Forum",
"href" => "http://forum.example.com/support"
),
array(
...
)
));
```