-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlias.php
More file actions
40 lines (32 loc) · 953 Bytes
/
Alias.php
File metadata and controls
40 lines (32 loc) · 953 Bytes
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
<?php
namespace kjBotModule\kj415j45\CoreModule;
use kjBot\Framework\DataStorage;
class Alias{
protected $id;
public function __construct($id){
$this->id = $id;
}
public function setAlias($source, $target){
$alias = $this->getAlias();
$alias[$source]= $target;
return $this->save($alias);
}
public function getAlias($source = NULL){
$alias = json_decode(DataStorage::GetData('CoreModule.Alias/'.$this->id), true);
if($source == NULL)return $alias;
else{
if(isset($alias[$source])){
return $alias[$source];
}
}
return NULL;
}
public function delAlias($source){
$alias = $this->getAlias();
unset($alias[$source]);
return $this->save($alias);
}
private function save($alias){
return DataStorage::SetData('CoreModule.Alias/'.$this->id, json_encode($alias));
}
}