AAAApayzen/elements/payzenlabel.php 0000666 00000002144 15137405540 0012716 0 ustar 00 attributes('class') ? 'class="'.$node->attributes('class').'"' : 'class="text_area"' );
return '';
}
} payzen/elements/payzenmultilist.php 0000666 00000004552 15137405540 0013672 0 ustar 00 children() as $option)
{
$val = $option->attributes('value');
$text = $option->data();
$options[] = JHTML::_('select.option', $val, JText::_($text));
}
// Construct the various argument calls that are supported.
$attribs = ' ';
if ($v = $node->attributes( 'size' )) {
$attribs .= 'size="'.$v.'"';
}
if ($v = $node->attributes( 'class' )) {
$attribs .= 'class="'.$v.'"';
} else {
$attribs .= 'class="inputbox"';
}
if ($m = $node->attributes( 'multiple' ))
{
$attribs .= ' multiple="multiple"';
$ctrl .= '[]';
}
// Render the HTML SELECT list.
return JHTML::_('select.genericlist', $options, $ctrl, $attribs, 'value', 'text', $value, $control_name.$name );
}
} payzen/elements/payzenurl.php 0000666 00000003030 15137405540 0012434 0 ustar 00 attributes('class') ? 'class="'.$node->attributes('class').'"' : 'class="text_area"' );
if ($node->attributes( 'default' ) == $value)
{
$value = JURI::root(). $value;
}
if ($node->attributes( 'editable' ) == 'true')
{
$size = ( $node->attributes('size') ? 'size="'.$node->attributes('size').'"' : '' );
return '';
}
else
{
return '';
}
}
} payzen/elements/.htaccess 0000666 00000000177 15137405540 0011501 0 ustar 00
Order allow,deny
Deny from all