Advertisement
Guest User

Untitled

a guest
Aug 10th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <?php
  2. /**
  3.  * @package     gantry
  4.  * @subpackage  features
  5.  * @version     3.2.20 June 19, 2012
  6.  * @author      RocketTheme http://www.rockettheme.com
  7.  * @copyright   Copyright (C) 2007 - 2012 RocketTheme, LLC
  8.  * @license     http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
  9.  *
  10.  * Gantry uses the Joomla Framework (http://www.joomla.org), a GNU/GPLv2 content management system
  11.  *
  12.  */
  13.  
  14. defined('JPATH_BASE') or die();
  15.  
  16. gantry_import('core.gantryfeature');
  17.  
  18. /**
  19.  * @package     gantry
  20.  * @subpackage  features
  21.  */
  22.  
  23. class GantryFeatureTwitter extends GantryFeature {
  24.     var $_feature_name = 'twitter';
  25.  
  26.     function render($position="") {
  27.        
  28.         ob_start();
  29.         ?>
  30.         <p>Test</p>
  31.         <?php
  32.  
  33.         return ob_get_clean();
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement