ersaf/announcements

There is no license information available for the latest version (1.1.0) of this package.

Ersaf Announcements

1.1.0 2021-08-05 15:57 UTC

README

Announcements management.

Installation

  1. You need to require this package and enable the module in your configuration.

add to composer requirements in composer.json

"ersaf/announcements": "dev-master as 1.0.0",

or run command bash:

composer require "ersaf/announcements": "dev-master as 1.0.0"

Enable the Announcements modules in modules-others.php, add :

	'announcements' => [
		'class' => 'ersaf\announcements\Module',
	],

add Announcements migrations to console modules (console/config/migrations-amos.php):

'@vendor/ersaf/announcements/src/migrations'

Add module to your modules-amos config in backend:

	<?php
	$config = [
		'modules' => [
			'search' => [
				'class' => 'ersaf\announcements\Module'
			],
		],
	];

Enable the search bar add to backend/params-local

search navbar menu

	'searchNavbar' => true