Exemplo n.º 1
0
# Websites: http://citruscart.com
# Technical Support:  Forum - http://citruscart.com/forum/index.html
-------------------------------------------------------------------------*/
/** ensure this file is being included by a parent file */
defined('_JEXEC') or die('Restricted access');
$form = $this->form;
$row = $this->row;
?>

<form action="<?php 
echo JRoute::_($form['action']);
?>
" method="post" class="adminform" name="adminForm" enctype="multipart/form-data" >

	<?php 
echo CitruscartGrid::pagetooltip('products_view');
?>

    <table style="width: 100%;">
    <tr>
        <td style="width: 70%; max-width: 70%; vertical-align: top; padding: 0px 5px 0px 0px;">


		<fieldset>
			<legend><?php 
echo JText::_('COM_CITRUSCART_PRODUCT');
?>
</legend>
				<table class="admintable">
					<tr>
						<td width="100" align="right" class="key">
Exemplo n.º 2
0
$items = $this->items;
?>

<!-- Get the application -->
<?php 
$app = JFactory::getApplication();
?>

<form action="<?php 
echo JRoute::_($form['action']);
?>
" method="post" name="adminForm" id="adminForm" enctype="multipart/form-data">

	<?php 
/* Get view string */
echo CitruscartGrid::pagetooltip($app->input->getString('view'));
?>

    <?php 
echo CitruscartGrid::searchform($state->filter, JText::_('COM_CITRUSCART_SEARCH'), JText::_('COM_CITRUSCART_RESET'));
?>

	<table class="table table-striped table-bordered" style="clear: both;">
		<thead>
            <tr>
                <th>
                	<?php 
echo JText::_('COM_CITRUSCART_NUM');
?>
                </th>
                <th>
Exemplo n.º 3
0
defined('_JEXEC') or die('Restricted access');
$app = JFactory::getApplication();
$view = $app->input->get('view');
JHtml::_('script', 'media/citruscart/js/citruscart.js', false, false);
$state = $this->state;
$form = $this->form;
$items = $this->items;
?>

<form action="<?php 
echo JRoute::_($form['action']);
?>
" method="post" name="adminForm" id="adminForm" enctype="multipart/form-data">

	<?php 
echo CitruscartGrid::pagetooltip($view);
?>

    <?php 
echo CitruscartGrid::searchform($state->filter, JText::_('COM_CITRUSCART_SEARCH'), JText::_('COM_CITRUSCART_RESET'));
?>


	<table class="table table-bordered" style="clear: both;">
		<thead>
            <tr>
                <th>
                	<?php 
echo JText::_('COM_CITRUSCART_NUM');
?>
                </th>
Exemplo n.º 4
0
-------------------------------------------------------------------------*/
/** ensure this file is being included by a parent file */
defined('_JEXEC') or die('Restricted access');
JHtml::_('script', 'media/citruscart/js/citruscart.js', false, false);
$state = $this->state;
$form = $this->form;
$items = $this->items;
?>

<form action="<?php 
echo JRoute::_($form['action']);
?>
" method="post" class="adminform" name="adminForm" id="adminForm" enctype="multipart/form-data">

	<?php 
echo CitruscartGrid::pagetooltip(JFactory::getApplication()->input->getString('view'));
?>

	<?php 
echo CitruscartGrid::searchform($state->filter, JText::_('COM_CITRUSCART_SEARCH'), JText::_('COM_CITRUSCART_RESET'));
?>

	<table class="table table-striped table-bordered" style="clear: both;">
		<thead>
            <tr>
                <th>
                	<?php 
echo JText::_('COM_CITRUSCART_NUM');
?>
                </th>
                <th>
Exemplo n.º 5
0
	<button class="btn btn-success" onclick="document.adminForm.toggle.checked=true; checkAll(<?php 
echo count(@$items);
?>
); document.getElementById('task').value='saverates'; document.adminForm.submit();"><?php 
echo JText::_('COM_CITRUSCART_SAVE_CHANGES');
?>
</button>
</div>

<form action="<?php 
echo JRoute::_(@$form['action']);
?>
" method="post" name="adminForm" id="adminForm" enctype="multipart/form-data">

	<?php 
echo CitruscartGrid::pagetooltip(JRequest::getVar('view'));
?>

    <table>
        <tr>
            <td align="left" width="100%">
            </td>
            <td nowrap="nowrap">
            	<table class="table table-striped table-bordered">
            	<thead>
            	<tr>
            		<th></th>
                    <th><?php 
echo JText::_('COM_CITRUSCART_GEOZONE');
?>
</th>
Exemplo n.º 6
0
$helper_product = CitruscartHelperBase::getInstance('product');
$name = $row->first_name . ' ' . $row->last_name;
if ($name == ' ') {
    $address = $helper_user->getPrimaryAddress($row->id, 'billing');
    if (is_object($address)) {
        $name = $address->first_name . ' ' . $address->last_name;
    }
}
?>

<form action="<?php 
echo JRoute::_($form['action']);
?>
" method="post" class="adminform" name="adminForm" id="adminForm">
<?php 
echo CitruscartGrid::pagetooltip('users_view');
?>
<table width="100%" border="0">
	<tr>
		<td colspan="2">
			<h2 style="padding:0px; margin:0px;"><?php 
echo $name;
?>
</h2>
		</td>
	</tr>
	<tr>
		<td colspan="2">
			<fieldset>
				<legend><?php 
echo JText::_('COM_CITRUSCART_BASIC_USER_INFO');