Documenting function

This commit is contained in:
Saqib Razzaq 2016-03-16 17:02:04 +05:00
parent 255ea9b35e
commit a3ed9c963e

View file

@ -26,14 +26,15 @@
}
/**
* Function used to get config value
* of ClipBucket
*/
function config($input)
{
* Function used to get config value of ClipBucket
* @uses: { class : Cbucket } { var : configs }
*/
function config($input) {
global $Cbucket;
return $Cbucket->configs[$input];
}
function get_config($input){ return config($input); }
/**