Advertisement
bueddl

Untitled

Apr 14th, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3.     namespace plugins\MY_PLUGIN;
  4.      
  5.     uses core\view\widget;
  6.      
  7.     class ServerInfoView extends widget_view
  8.     {
  9.         function __construct()
  10.         {
  11.            $this->setUserHideable();
  12.         }
  13.  
  14.         function display()
  15.         {
  16.             $this->sendToAll(
  17.               'xml shit z.B. oder objekte'
  18.             );
  19.         }
  20.     }
  21.  
  22.  
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement