Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlias.php
More file actions
Latest commit
40 lines (32 loc) · 953 Bytes
/
Copy pathAlias.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
namespacekjBotModule\kj415j45\CoreModule;
usekjBot\Framework\DataStorage;
class Alias{
protected$id;
publicfunction__construct($id){
$this->id = $id;
}
publicfunctionsetAlias($source, $target){
$alias = $this->getAlias();
$alias[$source]= $target;
return$this->save($alias);
}
publicfunctiongetAlias($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];
}
}
returnNULL;
}
publicfunctiondelAlias($source){
$alias = $this->getAlias();
unset($alias[$source]);
return$this->save($alias);
}
privatefunctionsave($alias){
return DataStorage::SetData('CoreModule.Alias/'.$this->id, json_encode($alias));
}
}