modules/aggregator/aggregator.api.php, 60行
实现这个钩子为了显示你所抓取的标题和简短描述.
The title and the description provided are shown on admin/content/aggregator/settings among other places. Use as title the human readable name of the fetcher and as description a brief (40 to 80 characters) explanation of the fetcher's functionality.
This hook is only called if your module implements hook_aggregator_fetch(). If this hook is not implemented aggregator will use your module's file name as title and there will be no description.
An associative array defining a title and a description string.
<?php function hook_aggregator_fetch_info() { return array( 'title' => t('Default fetcher'), 'description' => t('Default fetcher for resources available by URL.'), ); } ?>
4 days 8 hours ago
5 days 13 hours ago
1 week 2 days ago
1 week 5 days ago
1 week 5 days ago
1 week 6 days ago
2 weeks 12 hours ago
2 weeks 3 days ago
3 weeks 5 days ago
4 weeks 3 days ago