Voicenotice.php
1.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/**
* Author: DOUBLE Y
* Date: 2019/2/25 16:21
* Email: 731633799@qq.com
*/
namespace addons\voicenotice;
use think\Addons;
use think\Config;
use think\View;
/**
* 插件
*/
class Voicenotice extends Addons
{
/**
* 插件安装方法
* @return bool
*/
public function install()
{
return true;
}
/**
* 插件卸载方法
* @return bool
*/
public function uninstall()
{
return true;
}
public function run()
{
return true;
}
/**
* 插件启用方法
* @return bool
*/
public function enable()
{
return true;
}
/**
* 插件禁用方法
* @return bool
*/
public function disable()
{
return true;
}
public function actionBegin()
{
$conf = $this->getConfig();
$view = View::instance(Config::get('template'), Config::get('view_replace_str'));
$voiceNotice['delay'] = (isset($conf["delay"]) && is_numeric($conf["delay"]))?$conf["delay"]*1000:4000;
if(isset($view->config)){
$voiceNotice && $view->config = array_merge($view->config ? $view->config : [], compact('voiceNotice'));
}
}
}