Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luyadev/luya-module-news
LUYA News Module.
https://github.com/luyadev/luya-module-news
hacktoberfest luya news
Last synced: about 2 months ago
JSON representation
LUYA News Module.
- Host: GitHub
- URL: https://github.com/luyadev/luya-module-news
- Owner: luyadev
- License: mit
- Created: 2015-02-05T10:03:21.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-11-25T11:47:34.000Z (about 3 years ago)
- Last Synced: 2024-10-31T15:53:10.616Z (about 2 months ago)
- Topics: hacktoberfest, luya, news
- Language: PHP
- Homepage: https://luya.io
- Size: 6.27 MB
- Stars: 5
- Watchers: 6
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# News Module
[![LUYA](https://img.shields.io/badge/Powered%20by-LUYA-brightgreen.svg)](https://luya.io)
[![Latest Stable Version](https://poser.pugx.org/luyadev/luya-module-news/v/stable)](https://packagist.org/packages/luyadev/luya-module-news)
![Tests](https://github.com/luyadev/luya-module-news/workflows/Tests/badge.svg)
[![Maintainability](https://api.codeclimate.com/v1/badges/7ba026bc02e251fa1d63/maintainability)](https://codeclimate.com/github/luyadev/luya-module-news/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/7ba026bc02e251fa1d63/test_coverage)](https://codeclimate.com/github/luyadev/luya-module-news/test_coverage)
[![Total Downloads](https://poser.pugx.org/luyadev/luya-module-news/downloads)](https://packagist.org/packages/luyadev/luya-module-news)The news module will provided you a basic news system with categories and tags.
## Installation
For the installation of modules Composer is required.
```sh
composer require luyadev/luya-module-news
```### Configuration
After installation via Composer include the module to your configuration file within the modules section.
```php
'modules' => [
// ...
'news' => [
'class' => 'luya\news\frontend\Module',
'useAppViewPath' => false, // When enabled the views will be looked up in the @app/views folder, otherwise the views shipped with the module will be used.
],
'newsadmin' => 'luya\news\admin\Module',
]
```### Initialization
After successfully installation and configuration run the migrate, import and setup command to initialize the module in your project.
1.) Migrate your database.
```sh
./vendor/bin/luya migrate
```2.) Import the module and migrations into your LUYA project.
```sh
./vendor/bin/luya import
```3.) Add the permissions to your group (Under "System -> Groups" in the LUYA admin interface)
You will now be able to edit and add news articles.
With version 2.0 of news module, the admin queue is required in order to switch the visibility of the news based on time, therefore read [LUYA Queue](https://luya.io/guide/app-queue) or enable:
```php
'modules' => [
'admin' => [
'class' => 'luya\admin\Module',
// ...
'autoBootstrapQueue' => true,
],
//...
]
```## Example Views
As the module will try to render a view for the news overview, here is what this could look like this in a very basic way:
#### views/news/default/index.php
```php
Latest News Articles
models as $item): ?>
toArray()); ?>
= LinkPager::widget(['pagination' => $provider->pagination]); ?>
```#### views/news/default/detail.php
```php
= $model->title; ?>
toArray()); ?>
```The above examples will just dump all the data from the model active records.