-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfunctions.php
More file actions
54 lines (48 loc) · 1.64 KB
/
functions.php
File metadata and controls
54 lines (48 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
declare(strict_types=1);
namespace Flasher\Noty\Prime;
use Flasher\Prime\Container\FlasherContainer;
use Flasher\Prime\Notification\Envelope;
use Flasher\Prime\Notification\Type;
if (!\function_exists('Flasher\Noty\Prime\noty')) {
/**
* @param array{
* layout?: "top"|"topLeft"|"topCenter"|"topRight"|"center"|"centerLeft"|"centerRight"|"bottom"|"bottomLeft"|"bottomCenter"|"bottomRight",
* theme?: "relax"|"mint"|"metroui",
* timeout?: false|int,
* progressBar?: bool,
* closeWith?: string[],
* animation?: array{
* open?: string|null,
* close?: string|null,
* },
* sounds?: array{
* sources?: string[],
* volume?: int,
* conditions?: string[],
* },
* docTitle?: array{
* conditions?: string[],
* },
* modal?: bool,
* id?: bool|string,
* force?: bool,
* queue?: string,
* killer?: bool|string,
* container?: false|string,
* buttons?: string[],
* visibilityControl?: bool,
* } $options
* @param 'success'|'info'|'warning'|'error'|'alert'|'information' $type
*
* @phpstan-return ($message is empty ? NotyInterface : Envelope)
*/
function noty(?string $message = null, string $type = Type::SUCCESS, array $options = [], ?string $title = null): Envelope|NotyInterface
{
$factory = FlasherContainer::create('flasher.noty');
if (0 === \func_num_args()) {
return $factory;
}
return $factory->flash($type, $message, $options, $title);
}
}