Datei: plugins/example.skeleton.php

Quellcode
Darstellung:
  1. <?php
  2. /**
  3.  * Plugin example: Skeleton
  4.  *
  5.  */
  6. class SkeletonExample extends BMPlugin 
  7. {
  8.    function SkeletonExample()
  9.    {
  10.       $this->name             'Skeleton example';
  11.       $this->author           'B1G Software';
  12.       $this->web              'http://www.b1g.de';
  13.       $this->mail             'info@b1g.de';
  14.       $this->version          '1.0';
  15.       $this->designedfor         '7.0.0';
  16.       $this->type             BMPLUGIN_DEFAULT;
  17.    }
  18. }
  19.  
  20. /**
  21.  * register plugin
  22.  */
  23. $plugins->registerPlugin('SkeletonExample');
  24. ?>