1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00
php-phpbb/tests/event/fixtures/duplicate_event.test
2014-04-20 14:15:54 +02:00

20 lines
455 B
Plaintext

<?php
/**
* Event after the post data has been assigned to the template
*
* @event duplicate.trigger
* @var int start Start item of this page
* @since 3.1.0-a3
*/
$vars = array('start');
extract($phpbb_dispatcher->trigger_event('duplicate.trigger', compact($vars)));
/**
* Event after the post data has been assigned to the template
*
* @event duplicate.trigger
* @since 3.1.0-b1
*/
$phpbb_dispatcher->dispatch('duplicate.trigger');