function yashare_help in Yandex.Share 7
Same name and namespace in other branches
- 7.2 yashare.module \yashare_help()
Implements hook_help().
File
- ./
yashare.module, line 14
Code
function yashare_help($path, $arg) {
switch ($path) {
case 'admin/help#yashare':
// Return a line-break version of the module README.txt
return _filter_autop(file_get_contents(dirname(__FILE__) . "/README.txt"));
break;
}
}