phpUserTrack
[ class tree: phpUserTrack ] [ index: phpUserTrack ] [ all elements ]

Source for file graphRenderCopyright.php

Documentation is available at graphRenderCopyright.php

  1. <?php
  2. /**
  3.  * This is an example of what a plugin could look like. Required functions are _type() and invoke()
  4.  */
  5. /**
  6.  * ipFilter plugin class. Filter out IP addresses that admin doesent want recorded.
  7.  * @author Christopher Troup <mini@chatetheory.com>
  8.  * @package phpUserTrack
  9.  * @subpackage Plugins
  10.  */
  11. class graphRenderCopyright extends plugins {
  12.  
  13.         function graphRenderCopyright({
  14.         }
  15.  
  16.     /**
  17.      * Invoke plugins, filter IP addresses
  18.      * @param phpusertrack_ip $ip Profile object
  19.      * @return phpusertrack_ip Altered Profile object
  20.      */
  21.     function invoke($im{
  22.      $w  imagecolorallocate($im230230230);
  23.      imagefttext($im2820110180$w'VeraBd.ttf''ALPHA VERSION');
  24.     }
  25.  
  26.     /**
  27.      * The type of plugin
  28.      * @return string
  29.      */
  30.     function _type({
  31.         return 'graph.prerender';
  32.     }
  33.  
  34. }
  35.     
  36. ?>

Documentation generated on Tue, 06 Nov 2007 09:21:50 -0800 by phpDocumentor 1.4.0a2