Download the PHP package micvital/slider-module without Composer

On this page you can find all versions of the php package micvital/slider-module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package slider-module

Slider Module

IMPORTANT: Slider Module for AsgardCMS v1 and v2 is no longer maintained

For Asgard v1, use 0.x tagged releases, for Asgard v2 use 2.x tagged releases. Please upgrade Asgard to v3 if you wish to use the latest features (see changelog in releases for details)

Special Thanks

to Nicolas Widart for AsgardCMS and his Menu Module, that was used as a foundation for the Slider Module. All other contributors to this module

Installation

You can install Slider module using composer: composer require bociancz/slider-module

After the module is installed, Slider migrations should be installed automatically, as well as frontend assets. If by any chance they are not, you can run commands manually:

Do not forget to give yourself access in AsgardCMS (using Roles/Permissions). New Slider item will appear in the Sidebar

Usage

Prerequisites

By default, Slider module is created using Bootstrap Carousel so make sure you have all prerequisites loaded for standard Bootstrap carousel (Bootstrap Carousel CSS and JS)

Basic Usage

You can create basic Slider using the AsgardCMS admin interface - you can create and name your slider (pay attention to the System Name field here, it is used later for rendering), and create individual slides. Slides can be linked to images in the Media module, or have URL pointing to external image. They can also contain hyperlink to any page on the site, fixed URI or URL.

When the slider is created, you can render it in your template using {!! Slider::render('slider_system_name') !}}

Advanced Usage

Use your own slider template

If you want to change rendering of your slider, use custom HTML, CSS classes, etc, you can pass a Blade template name as a second parameter to the render() method, i.e. {!! Slider::render('slider_system_name', 'slider/my-own-slider') !}}

Template may look like this:

You will have Modules\Slider\Entities\Slider instance available in the $slider variable

Provide your own Slider instance

You can also pass a Modules\Slider\Entities\Slider instance as a first parameter instead of the slider system_name to render dynamically created slider.

First, create instance of your slider and add slides in your controller and pass it to the view

then, inside of the homepage.blade.php template, you can render slider using {!! Slider::render($mySlider) !!}

Using Youtube video on a slide background (Bootstrap4 only supported)

You have the option to provide a Youtube video link for each slide. When using a default Bootstrap 4 template, this video will play on a background.

If image is provided at the same time, it will be displayed as a slide background before the video player loads (delay is set to 2 seconds by default)

All styles and javascripts are contained in the blade template (youtube-video-slide.blade.php) see https://www.powderkegwebdesign.com/implementing-youtube-background-videos/ for the original solution

!!! When using a video on the background, you can currently only use it on a single slide. Videos on more than one slide will not play !!!

Allow multiple images per slider

Sometimes, it is useful to be able to upload multiple images per slide (for example for hover effect, etc.). Slider module is configurable to support this usecase:

(you will be able to attach three different images to each of your slides)

Resources


All versions of slider-module with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
composer/installers Version ~1.0
micvital/core-module Version ~1.0
idavoll/media-module Version ~3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package micvital/slider-module contains the following files

Loading the files please wait ....