imagina/slider-module
Composer 安装命令:
composer require imagina/slider-module
包简介
Slider module for AsgardCMS
关键字:
README 文档
README
Special Thanks
to Nicolas Widart for AsgardCMS and his Menu Module, that was used as a foundation for the Slider Module.
Installation
You can install Slider module using composer:
composer require bociancz/slider-module
After the module is installed, you have 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 http://getbootstrap.com/javascript/#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:
{-- Themes/MyTheme/views/slider/my-own-slider.blade.php --}
<div id="{{ $slider->system_name }}" class="my-own-slider-class">
@foreach($slider->slides as $index => $slide)
<div class="slide">
<a href="{{ $slide->getLinkUrl() }}">
<img src="{{ $slide->getImageUrl() }}" />
</a>
</div>
@endforeach
</div>
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
<?php ... // import classes needed to create your own instance use Modules\Slider\Entities\Slider; use Modules\Slider\Entities\Slide; class HomepageController { ... /** * controller method */ public function displayHomepage() { // make a new Slider instance $mySlider = new Slider; $mySlider ->system_name = 'custom_slider'; // create slide 1 $slide1 = new Slide; $slide1->title = 'First Slide'; $slide1->caption = 'First slide text'; $slide1->external_image_url = 'https://placeholdit.imgix.net/~text?txtsize=33&txt=Slide1&w=800&h=300'; // create slide 2 $slide2 = new Slide; $slide2->title = 'Second Slide'; $slide2->caption = 'Second slide text'; $slide2->external_image_url = 'https://placeholdit.imgix.net/~text?txtsize=33&txt=Slide2&w=800&h=300'; // add slides to slider $mySlider->slides->add($slide1); $mySlider->slides->add($slide2); // render view return View::make('homepage') ->with('mySlider', $mySlider); }
then, inside of the homepage.blade.php template, you can render slider using {!! Slider::render($mySlider) !!}
Resources
imagina/slider-module 适用场景与选型建议
imagina/slider-module 是一款 基于 Blade 开发的 Composer 扩展包,目前已累计 2.57k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2018 年 11 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「slider」 「asgardcms」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 imagina/slider-module 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 imagina/slider-module 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 imagina/slider-module 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Display a FlexSlider on pages of your website
Slick slider element Silverstripe
yii2 swiper slider
Implementation of carouFredSel as extension for Contao Open Source CMS
Page module for AsgardCMS. Page management.
A blog module for AsgardCMS.
统计信息
- 总下载量: 2.57k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 7
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-11-16