承接 plasticbrain/php-flash-messages 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

plasticbrain/php-flash-messages

最新稳定版本:v1.0.1

Composer 安装命令:

composer require plasticbrain/php-flash-messages

包简介

A modern take on PHP session-based flash messages

README 文档

README

Store messages in session data until they are retrieved. Featuring PSR-4 compliance, Bootstrap compatibility, sticky messages, and more.

More info at http://mikeeverhart.net/php-flash-messages.

Notice

This is a new version of https://github.com/plasticbrain/php-flash-messages-legacy. This updated version has been completely rewritten, and therefore is not compatible with the original version!

Thank you to everyone that used the old version, and especially to those that left feedback and recommendations!

Features

  • Namespaced
  • PSR-4 autoload compliant
  • Installable with composer
  • Works with Bootstrap
  • Fully customizable messages
  • Sticky messages

Roadmap

  • Add custom message types
  • Persistent messages (show message until it is manually cleared)

Installation

With Composer

composer require plasticbrain/php-flash-messages

Without composer

Download FlashMessages.php and save it to your project directory.

Import the file:

require '/path/to/FlashMessages.php';

Basic Usage

// Start a Session
if (!session_id()) @session_start();
	
// Instantiate the class
$msg = new \Plasticbrain\FlashMessages\FlashMessages();

// Add messages
$msg->info('This is an info message');
$msg->success('This is a success message');
$msg->warning('This is a warning message');
$msg->error('This is an error message');


// If you need to check for errors (eg: when validating a form) you can:
if ($msg->hasErrors()) {
	// There ARE errors
} else {
  // There are NOT any errors
}
	
// Wherever you want to display the messages simply call:
$msg->display();

Message Types

Info

$msg->info('This is a info message');

Info Message

Success

$msg->success('This is a success message');

Success Message

Warning

$msg->warning('This is a warning message');

Warning Message

Error

$msg->error('This is a error message');

Error Message

Message Type Constants

Each message type can be referred to by its constant: INFO, SUCCESS, WARNING, ERROR. For example:

$msg::INFO
$msg::SUCCESS
$msg::WARNING
$msg::ERROR

Redirects

It's possible to redirect to a different URL before displaying a message. For example, redirecting back to a form (and displaying an error message) so a user can correct an error.

The preferred method of doing this is by passing the URL as the 2nd parameter:

$msg->error('This is an error message', 'http://yoursite.com/another-page');

A redirect is executed as soon as the message it's attached to is queued. As such, if you need multiple messages AND need to redirect then include the URL with the last message:

$msg->success('This is a success message');
$msg->success('This is another success message');
$msg->error('This is an error message', 'http://redirect-url.com');   

Sticky Messages

By default, all messages include a close button. The close button can be removed, thus making the message sticky. To make a message sticky pass true as the third parameter:

$msg->error("This is a sticky error message (it can't be closed)", null, true);
$msg->warning("This is a sticky warning message (it can't be closed)", null, true);
$msg->success("This is a sticky success message (it can't be closed)", null, true);
$msg->info("This is a sticky info message (it can't be closed)", null, true);

Sticky Info Message Sticky Success Message Sticky Warning Message Sticky Error Message

There's also a special method, appropriately enough called sticky(), that can be used to make sticky messages:

$msg->sticky('This is also a sticky message');

sticky() accepts an optional 2nd parameter for the redirect url, and a 3rd for the message type:

$msg->sticky('This is "success" sticky message', 'http://redirect-url.com', $msg::SUCCESS);
```

By default, `sticky()` will render as whatever the default message type is set to (usually `$msg::INFO`.) Use the 3rd parameter override this.

## Helper Methods
### `hasErrors()`

Check to see if there are any queued `ERROR` messages.

````php
if ($msg->hasErrors()) {
    // There are errors, so do something like redirect
}

hasMessages ( [string $type] )

Check to see if there are any specific message types (or any messages at all) queued.

// Check if there are any INFO messages
if ($msg->hasMessages($msg::INFO)) {
    ...
}

// Check if there are any SUCCESS messages
if ($msg->hasMessages($msg::SUCCESS)) {
    ...
}

// Check if there are any WARNING messages
if ($msg->hasMessages($msg::WARNING)) {
    ...
}

// Check if there are any ERROR messages
if ($msg->hasMessages($msg::ERROR)) {
    ...
}

// See if there are *any* messages queued at all
if ($msg->hasMessages()) {
    ...
}

setCloseBtn ( string $html )

Sets the HTML for the close button that's displayed on (non-sticky) messages.

$msg->setCloseBtn('<button type="button" class="close" 
                        data-dismiss="alert" 
                        aria-label="Close">
                        <span aria-hidden="true">&amp;times;</span>
                    </button>')

setCssClassMap ( array $cssClassMap )

Sets the CSS classes that are used for each specific message type.

$msg->setCssClassMap([
    $msg::INFO    => 'alert-info',
    $msg::SUCCESS => 'alert-success',
    $msg::WARNING => 'alert-warning',
    $msg::ERROR   => 'alert-danger',
]);

setMsgAfter ( string $msgAfter )

Add a string of text (HTML or otherwise) after the message (but inside of the wrapper.)

For example, wrap a message in <p> tags:

$msg->setMsgAfter('</p>')

setMsgBefore ( string $msgBefore )

Add a string of text (HTML or otherwise) before the message (but inside of the wrapper.)

For example, wrap a message in <p> tags:

$msg->setMsgBefore('<p>')

setMsgCssClass ( [string $cssClass] )

Sets the CSS class that is applied to all messages, regardless of their type.

$msg->setMsgCssClass('alert')

setMsgWrapper ( string $html )

Sets the HTML that wraps each message. HTML should include two placeholders (%s) for the CSS class and message text.

$msg->setMsgWrapper("<div class='%s'>%s</div>")

setStickyCssClass ( [string $cssClass] )

Set the CSS class used for sticky messages

$msg->setStickyCssClass('sticky')

License

The MIT License (MIT)

Copyright (c) 2015 Mike Everhart & PlasticBrain Media LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

plasticbrain/php-flash-messages 适用场景与选型建议

plasticbrain/php-flash-messages 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 229.73k 次下载、GitHub Stars 达 174, 最近一次更新时间为 2015 年 10 月 28 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「bootstrap」 「session」 「flash」 「messages」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

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

围绕 plasticbrain/php-flash-messages 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 229.73k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 184
  • 点击次数: 16
  • 依赖项目数: 8
  • 推荐数: 0

GitHub 信息

  • Stars: 174
  • Watchers: 15
  • Forks: 61
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-10-28