-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.php
executable file
·46 lines (40 loc) · 1.08 KB
/
Plugin.php
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
<?php namespace Fes\Weather;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function registerComponents()
{
return [
'\Fes\Weather\Components\Weather' => 'weather'
];
}
public function registerSettings()
{
return [
'settings' => [
'label' => 'fes.weather::lang.plugin.name',
'description' => 'fes.weather::lang.plugin.description',
'category' => 'Plugins',
'icon' => 'icon-sun-o',
'class' => 'Fes\Weather\Models\Settings',
'order' => 100
]
];
}
public function registerMarkupTags()
{
return [
'filters' => [
'cast_to_array' => [$this, 'castToArray']
]
];
}
public function castToArray($stdClassObject)
{
$response = array();
foreach ($stdClassObject as $key => $value) {
$response[] = array($key, $value);
}
return $response;
}
}