git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
28 lines
762 B
PHP
28 lines
762 B
PHP
<?php
|
|
/**
|
|
* @version 2.3
|
|
* @copyright Copyright (C) 2007-2010 Stephen Brandon
|
|
* @license GNU/GPL
|
|
*/
|
|
|
|
// Check to ensure this file is included in Joomla!
|
|
defined('_JEXEC') or die();
|
|
|
|
class JElementDonate extends JElement
|
|
{
|
|
/**
|
|
* Element name
|
|
*
|
|
* @access protected
|
|
* @var string
|
|
*/
|
|
var $_name = 'Donate';
|
|
|
|
function fetchElement($name, $value, &$node, $control_name)
|
|
{
|
|
return '
|
|
<a href="http://www.metamodpro.com/donate.php" target="_blank"><img src="https://www.paypal.com/en_GB/i/btn/btn_donate_SM.gif" border="0" alt="' . JText::_("Donate with PayPal").'" title="' . JText::_('Donate with PayPal - support further development of MetaMod!') . '" /></a>
|
|
' . JText::_("Make a donation — support further development of MetaMod!");
|
|
|
|
}
|
|
} |