feat(BaseConverter): create module
This commit is contained in:
parent
df790e0c9a
commit
53b5ebcb43
3 changed files with 119 additions and 1 deletions
20
modules/baseconverter/baseconverter_help.php
Normal file
20
modules/baseconverter/baseconverter_help.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Base Converter',
|
||||
'description' => 'Convert from base to base easily',
|
||||
'actions' => [
|
||||
[
|
||||
'name' => 'Convert from base64 to string',
|
||||
'path' => '/?from=base64&data=dGhhdCdzIGNvb2wgaHVoPwo='
|
||||
],
|
||||
[
|
||||
'name' => 'Convert decimal to hex',
|
||||
'path' => '/?from=hex&data=2a'
|
||||
],
|
||||
[
|
||||
'name' => 'Convert string to decimal',
|
||||
'path' => '/?to=dec&data=hello'
|
||||
]
|
||||
]
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue