Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2. // no direct access
  3. defined('_JEXEC') or die( 'Restricted access' );
  4. jimport('joomla.plugin.plugin');
  5. class plgMycategoryMaxsizer extends JPlugin
  6. {
  7.     protected $autoloadLanguage = true;
  8.    
  9.     function plgMycategoryMaxsizer( &$subject, $params )
  10.     {
  11.         parent::__construct( $subject, $params );
  12.     }
  13.    
  14.      function testMaxSizer()
  15.      {
  16.         return 'test';
  17.     }
  18. }
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement