%PDF- %PDF-
Direktori : /home/lightco1/www/lightingrepublic.com.au/plugins/vmpayment/payzen/payzen/elements/ |
Current File : /home/lightco1/www/lightingrepublic.com.au/plugins/vmpayment/payzen/payzen/elements/payzenlabel.php |
<?php ##################################################################################################### # # Module pour la plateforme de paiement PayZen # Version : 1.3c (révision 46701) # ######################## # Développé pour VirtueMart # Version : 2.0.8 # Compatibilité plateforme : V2 # ######################## # Développé par Lyra Network # http://www.lyra-network.com/ # 29/04/2013 # Contact : support@payzen.eu # ##################################################################################################### // Check to ensure this file is within the rest of the framework defined('JPATH_BASE') or die(); /** * Renders a label element */ class JElementPayzenLabel extends JElement { /** * Element name * * @access protected * @var string */ var $_name = 'PayzenLabel'; function fetchElement($name, $value, &$node, $control_name) { $class = ( $node->attributes('class') ? 'class="'.$node->attributes('class').'"' : 'class="text_area"' ); return '<label for="'.$name.'"'.$class.'>'.$value.'</label>'; } }