D-Bot/functions.php

13 lines
271 B
PHP
Raw Normal View History

2015-05-29 11:20:55 -05:00
<?php
function escapeString($var){
return '"' . addslashes($var) . '"';
}
function escapePeer($peer){
return str_replace(' ', '_', $peer);
}
function PluginList($commands, $name){
global $plugins;
$plugins[] .= TAG.$commands." ".$name;
}