Ejemplo n.º 1
0
<?php

// no direct access
defined('PARENT_FILE') or die('Restricted access');
if ($this->authorize()) {
    $taxBar = array('back' => '/ushop/overview', 'new_tax_codes' => '/ushop/tax/action-new_tax_code', 'new_tax_rates' => '/ushop/tax/action-new_tax_rate');
    $this->content .= $this->makeToolbar(array_merge($taxBar, $menuBar), 24);
    $tax_rates = $ushop->getTaxRates(true);
    require_once 'ushop/tax/tax_codes.php';
    require_once 'ushop/tax/tax_rates.php';
    $tab_array = array('tax_codes' => $display_codes, 'tax_rates' => $display_rates);
    $tabs = new HTML_Tabs($tab_array);
    $this->content .= $tabs->toHtml();
} else {
    header("Location:" . $this->get('config.server.web_url'));
    exit;
}
Ejemplo n.º 2
0
        $c = 0;
        $data = array();
        $tab_array = array();
        $orderRow = $this->getResult('order_status_id, order_status', $this->registry->core . 'ushop_order_status');
        foreach ($orders as $row) {
            $data[$c][] = $row->name;
            $data[$c][] = $row->invoice;
            $form = '<form id="order' . $row->order_id . '" action="' . $_SERVER['REQUEST_URI'] . '" method="post">';
            $form .= '<select name="order_status" onChange="this.form.submit()">';
            foreach ($orderRow as $or) {
                $form .= '<option value="' . $or->order_status_id . '" ';
                if ($row->order_status == $or->order_status) {
                    $form .= 'selected="selected"';
                }
                $form .= '>' . $or->order_status . '</option>';
            }
            $form .= '</select>';
            $form .= '<input type="hidden" name="oid" value="' . $row->order_id . '" />';
            $form .= '</form>';
            $data[$c][] = $form;
            $data[$c][] = $row->date;
            $c++;
        }
        $header = array('Customer', 'Invoice', 'Status', 'Date');
        $table = $this->dataTable($data, $header);
        $orders = $table->toHtml();
        $tab_array['New Orders'] = $orders;
        $tabs = new HTML_Tabs($tab_array);
        $this->addContent($tabs->toHtml());
    }
}
Ejemplo n.º 3
0
                        }
                    }
                }
                $panels .= '<tr class="option file">
						<td class="check">
						<div class="check" id="' . $key . '" deps="' . substr($deps, 0, -1) . '">
						<input type="checkbox" name="files[]" value="' . $folder . '/' . $key . '.js" ' . $checked . ' />
						</div>
						</td>
						<td class="name">' . $key . '</td>
						<td class="description">
						<p>' . $value['desc'] . '</p>
						</td>
						</tr>';
            }
        }
        $panels .= '</table>';
        $panels .= '</div>';
    }
    //$json .= '</div>';
    $tabs = new HTML_Tabs($tab_array, true);
    $tabs->addPanels($panels);
    $json .= $tabs->toHtml();
    $json .= '</form>';
    $json .= '</div>';
    $this->content .= $json;
    $this->registry->component_js = array('/components/template/js/mootools.js');
} else {
    header("Location:" . $registry->config->get('web_url', 'SERVER'));
    exit;
}