MediaWiki REL1_39
|
This is a hook handler interface, see docs/Hooks.md. More...
Public Member Functions | |
onApiFeedContributions__feedItem ( $row, $context, &$feedItem) | |
Use this hook to convert the result of ContribsPager into a FeedItem instance that ApiFeedContributions can consume. | |
This is a hook handler interface, see docs/Hooks.md.
Use the hook name "ApiFeedContributions::feedItem" to register handlers implementing this interface.
Definition at line 17 of file ApiFeedContributions__feedItemHook.php.
MediaWiki\Api\Hook\ApiFeedContributions__feedItemHook::onApiFeedContributions__feedItem | ( | $row, | |
$context, | |||
& | $feedItem ) |
Use this hook to convert the result of ContribsPager into a FeedItem instance that ApiFeedContributions can consume.
Implementors of this hook may cancel the hook to signal that the item is not viewable in the provided context.
stdClass | $row | A row of data from ContribsPager. The set of data returned by ContribsPager can be adjusted by handling the ContribsPager::reallyDoQuery hook. |
IContextSource | $context | |
FeedItem | null | &$feedItem | Set this to a FeedItem instance if the callback can handle the provided row. This is provided to the hook as a null, if it is non-null then another callback has already handled the hook. |
Implemented in MediaWiki\Api\ApiHookRunner.