modules/aggregator/aggregator.api.php, 184行
实现这个钩子以浏览你的处理器的标题和简介.
The title and the description provided are shown most importantly on admin/content/aggregator/settings . Use as title the natural name of the processor and as description a brief (40 to 80 characters) explanation of the functionality.
This hook is only called if your module implements hook_aggregator_process(). 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_process_info($feed) { return array( 'title' => t('Default processor'), 'description' => t('Creates lightweight records of feed items.'), ); } ?>
1 周 6 天之前
3 周 4 天之前
3 周 4 天之前
3 周 4 天之前
5 周 3 天之前
5 周 3 天之前
7 周 3 天之前
7 周 3 天之前
7 周 3 天之前
7 周 4 天之前