mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
25 lines
542 B
PHP
25 lines
542 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Phalcon\Flash\Session as PhFlashSession;
|
|
|
|
class FlashSession extends Provider
|
|
{
|
|
|
|
protected $serviceName = 'flashSession';
|
|
|
|
public function register()
|
|
{
|
|
$this->di->setShared($this->serviceName, function () {
|
|
|
|
return new PhFlashSession([
|
|
'error' => 'alert alert-danger',
|
|
'success' => 'alert alert-success',
|
|
'notice' => 'alert alert-info',
|
|
'warning' => 'alert alert-warning',
|
|
]);
|
|
});
|
|
}
|
|
|
|
} |