[extension] siripravi/yii2-slideradmin


Slideshow Image Administration using Yii2

  1. Installation
  2. Usage
  3. Credits

Installation The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist siripravi/yii2-slideradmin "@dev"

or add
"siripravi/yii2-slideradmin": "@dev"

to the require section of your composer.json file.
Usage Edit your application configuration file config/web.php as following:
`
'language' => 'hi',
...
'modules' => [
'slider' => [
'class' => 'siripravi\slideradmin\Module',
],
'admin' => [
'class' => 'app\admin\Module',
'as access' => [
'class' => 'yii\filters\AccessControl',
'rules' => [
[
'allow' => true,
'roles' => ['@'],
],
[
'actions' => ['login', 'error'],
'allow' => true,
'roles' => ['?'],
],
],
],
'modules' => [
'slider' => [
'class' => 'siripravi\slideradmin\Module',
],
...
],

],
Create database tables by running the command from application root directory:

php yii migrate --migrationPath="siripravi/yii2-slideradmin/migrations"

Now, Navigate to `http:///admin`

and create application data for slider and slider_image tables using the forms provided.

You can manipulate language info by directly editing data inside the database table `nxt_language`.

Thats all regarding backend.

You can view an example slider in frontend by placing this code in any view/layout file of your applacation:
```php
use siripravi\slideradmin\widgets\HomeSlider;

echo HomeSlider::widget([
'id' => 'home-slider',
'options' => [
'data-interval' => 3000,
],
'controls' => [
'',
'',
],
]);

Credits

  • [https://github.com/dench/yii2-language]
  • [https://github.com/OmgDef/yii2-multilingual-behavior]