zakharov-andrew/yii2-news

Yii2 News

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

v0.0.4 2024-10-13 23:40 UTC

This package is auto-updated.

Last update: 2024-10-14 20:25:09 UTC


README

Yii2 news module by Zakharov Andrey

Latest Stable Version Total Downloads License Yii2

The Yii2 News Module is a comprehensive extension designed to facilitate the creation, editing, and management of news content on your website. This versatile module is suitable for a wide range of news types, including blogs, press releases, announcements, and other forms of news publishing.

  • Supports user comments, news category, view count, rating, user reactions, delayed publishing
  • Access to news by role are supported
  • Supports Bootstrap versions: 3, 4, 5
  • Supports languages: English, Russian

Installation

The preferred way to install this extension is through composer.

Either run

$ composer require zakharov-andrew/yii2-news

or add

"zakharov-andrew/yii2-news": "*"

to the require section of your composer.json file.

Subsequently, run

./yii migrate/up --migrationPath=@vendor/zakharov-andrew/yii2-news/migrations

in order to create the settings table in your database.

Or add to console config

return [
    // ...
    'controllerMap' => [
        // ...
        'migrate' => [
            'class' => 'yii\console\controllers\MigrateController',
            'migrationPath' => [
                '@console/migrations', // Default migration folder
                '@vendor/zakharov-andrew/yii2-news/src/migrations'
            ]
        ]
        // ...
    ]
    // ...
];

Usage

Add this to your main configuration's modules array

    'modules' => [
        'news' => [
            'class' => 'ZakharovAndrew\news\Module',
            'bootstrapVersion' => 5, // if use bootstrap 5
            'showTitle' => true, // display H1 headings (default - true)
        ],
        // ...
    ],

License

yii2-news it is available under a MIT License. Detailed information can be found in the LICENSE.md.