Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. class SillyPlugin extends Plugin
  4. {
  5.  
  6. public function register()
  7. {
  8. $this->event->connect('user.login', array($this, onLogin));
  9.  
  10. }
  11.  
  12. public function onLogin($args)
  13. {
  14. //blah blah logged in
  15. }
  16.  
  17. }
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement