1 | <?php |
---|
2 | |
---|
3 | add_action( 'test_action', 'var_dump', 10, 2 ); |
---|
4 | |
---|
5 | class Dummy { |
---|
6 | function __construct() { |
---|
7 | echo '<pre>'; |
---|
8 | do_action( 'test_action', array( &$this ), 'foo' ); |
---|
9 | |
---|
10 | do_action( 'test_action', array( 'key' => 'val' ), 'foo' ); |
---|
11 | echo '</pre>'; |
---|
12 | } |
---|
13 | } |
---|
14 | |
---|
15 | new Dummy; |
---|
16 | |
---|