Index: branches/REL1_5/phase3/docs/hooks.txt |
— | — | @@ -348,5 +348,11 @@ |
349 | 349 | 'CategoryPageView': before viewing a categorypage in CategoryPage::view |
350 | 350 | $catpage: CategoryPage instance |
351 | 351 | |
| 352 | +'SkinTemplateContentActions': after building the $content_action array right |
| 353 | + before returning it, see content_action.php in |
| 354 | + the extension module for a demonstration of how |
| 355 | + to use this hook. |
| 356 | +$content_actions: The array of content actions |
352 | 357 | |
| 358 | + |
353 | 359 | More hooks might not be available but undocumented. |
Index: branches/REL1_5/phase3/includes/SkinTemplate.php |
— | — | @@ -711,6 +711,8 @@ |
712 | 712 | } |
713 | 713 | } |
714 | 714 | |
| 715 | + wfRunHooks( 'SkinTemplateContentActions', array(&$content_actions) ); |
| 716 | + |
715 | 717 | wfProfileOut( $fname ); |
716 | 718 | return $content_actions; |
717 | 719 | } |