Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nadar/luya-module-calendar
A very simple, password protected calendar (months) and detail (days of selected month) view for LUYA
https://github.com/nadar/luya-module-calendar
Last synced: 29 days ago
JSON representation
A very simple, password protected calendar (months) and detail (days of selected month) view for LUYA
- Host: GitHub
- URL: https://github.com/nadar/luya-module-calendar
- Owner: nadar
- Created: 2021-03-05T17:55:03.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-25T19:23:38.000Z (over 1 year ago)
- Last Synced: 2024-05-02T01:07:30.814Z (7 months ago)
- Language: PHP
- Size: 29.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LUYA CALENDAR MODULE
[![LUYA](https://img.shields.io/badge/Powered%20by-LUYA-brightgreen.svg)](https://luya.io)
A very simple, password protected calendar (months) and detail (days of selected month) view for LUYA.
## Installation
Install the extension through composer:
```sh
composer require nadar/luya-module-calendar
```Add the modules to your config file:
```php
'modules' => [
'calendarfrontend' => [
'class' => 'nadar\calendar\frontend\Module',
'password' => 'mysecretcalendar',
'calendarLocation' => 'Somewhere over the Rainbow',
],
'calendaradmin' => [
'class' => 'nadar\calendar\admin\Module'
],
]
```Run the migrate and import
```sh
./luya migrate
```Import command
```sh
./luya import
```