<?php
    /**
     * For bug report purpose
     */
    class TestMenuLoad extends PluginBase
    {
        static protected $description = 'A plugin to test afterAdminMenuLoaded';
        static protected $name = 'TestMenuLoad';

        public function __construct(PluginManager $manager, $id) {
            parent::__construct($manager, $id);
            $this->subscribe('afterAdminMenuLoad');
        }

        public function afterAdminMenuLoad()
        {
            tracevar("afterAdminMenuLoad is call");
        }
    }
?>
