Make WordPress Core

Ticket #5297: testglobals.php

File testglobals.php, 358 bytes (added by PaulButler, 18 years ago)
Line 
1<?php
2/*
3Plugin Name: Test Globals Plugin
4*/
5
6class 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
18add_action('content_save_pre', array($testplugin, 'save'));
19add_action('admin_notices', array($testplugin, 'notices'));
20
21?>