Ticket #5297: testglobals.php
| File testglobals.php, 358 bytes (added by , 18 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: Test Globals Plugin |
| 4 | */ |
| 5 | |
| 6 | class testplugin { |
| 7 | function save () { |
| 8 | $GLOBALS['test'] = true; |
| 9 | } |
| 10 | |
| 11 | function notices () { |
| 12 | echo isset($GLOBALS['test'])? 'good' : 'bad'; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | $testplugin = new testplugin(); |
| 17 | |
| 18 | add_action('content_save_pre', array($testplugin, 'save')); |
| 19 | add_action('admin_notices', array($testplugin, 'notices')); |
| 20 | |
| 21 | ?> |