Beispiel #1
0
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
if (JVM_VERSION < 3) {
    $control_field_class = "width100 floatleft control-field";
    $control_group_class = "width100 control-group";
    $control_label_class = "width25 floatleft control-label";
    $control_input_class = "width74 floatright control-input";
} else {
    $control_field_class = "control-field";
    $control_group_class = "control-group";
    $control_label_class = "control-label";
    $control_input_class = "control-input";
}
if ($this->payment->payment_jplugin_id) {
    ?>
	<h2 style="text-align: center;"><?php 
    echo $this->payment->payment_name;
    ?>
</h2>
	<div style="text-align: center;"><?php 
    echo VmText::_('COM_VIRTUEMART_PAYMENT_CLASS_NAME') . ": " . $this->payment->payment_element;
    ?>
</div>
	<?php 
    if ($this->payment->form) {
        $form = $this->payment->form;
        include VMPATH_ADMIN . DS . 'fields' . DS . 'formrenderer.php';
    }
} else {
    echo vmText::_('COM_VIRTUEMART_SELECT_PAYMENT_METHOD_VM3');
}
Beispiel #2
0
		    <fieldset>
			<?php 
echo $this->pluginList;
?>
			<div class="clear"></div>
    			<div id="plugin-Container">
				<?php 
defined('_JEXEC') or die('Restricted access');
if ($this->custom->custom_jplugin_id) {
    ?>
					<h2 style="text-align: center;"><?php 
    echo vmText::_($this->custom->custom_title);
    ?>
</h2>
					<div style="text-align: center;"><?php 
    echo VmText::_('COM_VIRTUEMART_CUSTOM_CLASS_NAME') . ": " . $this->custom->custom_element;
    ?>
</div>
					<?php 
    if ($this->custom->form) {
        $form = $this->custom->form;
        include JPATH_VM_ADMINISTRATOR . DS . 'fields' . DS . 'formrenderer.php';
    }
} else {
    echo vmText::_('COM_VIRTUEMART_SELECT_CUSTOM_PLUGIN');
}
?>

    			</div>
    		    </fieldset>
    		</td>
Beispiel #3
0
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
if (JVM_VERSION < 3) {
    $control_field_class = "width100 floatleft control-field";
    $control_group_class = "width100 control-group";
    $control_label_class = "width25 floatleft control-label";
    $control_input_class = "width74 floatright control-input";
} else {
    $control_field_class = "control-field";
    $control_group_class = "control-group";
    $control_label_class = "control-label";
    $control_input_class = "control-input";
}
if ($this->shipment->shipment_jplugin_id) {
    ?>
	<h2 style="text-align: center;"><?php 
    echo $this->shipment->shipment_name;
    ?>
</h2>
	<div style="text-align: center;"><?php 
    echo VmText::_('COM_VIRTUEMART_SHIPPING_CLASS_NAME') . ": " . $this->shipment->shipment_element;
    ?>
</div>
	<?php 
    if ($this->shipment->form) {
        $form = $this->shipment->form;
        include JPATH_VM_ADMINISTRATOR . DS . 'fields' . DS . 'formrenderer.php';
    }
} else {
    echo vmText::_('COM_VIRTUEMART_SELECT_SHIPMENT_METHOD_VM3');
}