定制 arkraft/alerts 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

arkraft/alerts

Composer 安装命令:

composer require arkraft/alerts

包简介

Using bootstrap growl to create alerts inside controllers.

README 文档

README

Laravel 4 Alerts provider to add bootstrap alerts from controllers using the great bootstrap-growl jquery plugin by Nick Larson.

Installation

Install with composer

composer require arkraft/alerts 0.8.0

Register the service provicer in app/config/app.php in the providers array

'Arkraft\Alerts\AlertsServiceProvider'

Add an alias under the alias array in app/config/app.php

'Alerts' => 'Arkraft\Alerts\Alerts',

And the last step ist to publish the assets. Execute the following command in the root of your project

php artisan asset:publish --path="vendor/arkraft/alerts/src/public/" jquery

This will add the jquery.bootstrap-growl.min.js to your public/packages/jquery directory. Usage

Now you can add alerts from your controller. The following message types are possible

  • Alerts::addInfo
  • Alerts::addSuccess
  • Alerts::addWarning
  • Alerts::addDanger

All methods have the same parameters:

  • message: the message you want to print
  • title (optional): the title of the message (will be prepended in strong letters to the message)
  • configuration (optional): additional configuration array For Example:
Alerts::addInfo("This is a simple info message", "Info");

will an the following message example info message

Displaying the alerts

Add

{{ Alerts::getAlerts() }}

to your sites javascripts.

Configuration

You can export the default configuration with

php artisan config:publish arkraft/alerts

This will export the following array to 'config/packages/arkraft/alerts/config.php'

return array(
    'offset' => '{from: "top", amount: 40}',
    'align' => 'right',
    'width' => 250,
    'delay' => 4000,
    'allowDismiss' => false,
    'stackupSpacing' => 5
);

The configuration values:

  • offset: array with offset values, the alerts will apear 40px from top
  • align: possible values are right, center and left.
  • width: the width of the message box
  • delay: delay for the message to disappear, this message will stay for 4 seconds before it disappears
  • allowDismiss: true will print a close button on the right side of the alert box
  • stackupSpacing: spacing between multiple alert boxes

The changes on this configuration file are global for all boxe. To change the configuration for a single alert you can use the configuration parameter like this

Alerts::addDanger("This is a simple error message", "Error", array("delay" => 0, "allowDismiss" => true, "align" => "center"));

This will show a message wich will stay in the center of the screen until it is closed with the close button on the right. Configurations passed as a parameter will overwrite the default configuration.

arkraft/alerts 适用场景与选型建议

arkraft/alerts 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 93 次下载、GitHub Stars 达 0, 最近一次更新时间为 2014 年 10 月 26 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 arkraft/alerts 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 arkraft/alerts 我们能提供哪些服务?
定制开发 / 二次开发

基于 arkraft/alerts 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 93
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 17
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-10-26