Esempio n. 1
0
        echo ' <button class="btn">' . $LANG['view'] . '</button>

</form>

<form action="#" method="GET" autocomplete="off">
<input type="hidden" name="route" value="payments.php" />
<input type="hidden" name="action" value="list" />';
        if (isset($_GET['orderby'])) {
            echo '<input type="hidden" name="orderby" value="' . htmlspecialchars($_GET['orderby']) . '" />';
        }
        echo '<input type="search" name="search" value="' . (isset($_GET['search']) ? htmlspecialchars($_GET['search']) : '') . '" placeholder="' . $LANG['pmts_trans_search_input'] . '" />
<button class="btn">' . $LANG['search'] . '</button>
</form>

</div>';
        $p = \query\payments::have_invoices($options = array('per_page' => 10, 'show' => isset($_GET['view']) ? $_GET['view'] : '', 'search' => isset($_GET['search']) ? urldecode($_GET['search']) : ''));
        echo '<div class="results">' . ((int) $p['results'] === 1 ? sprintf($LANG['result'], $p['results']) : sprintf($LANG['results'], $p['results']));
        if (!empty($_GET['view']) || !empty($_GET['search'])) {
            echo ' / <a href="?route=payments.php&amp;action=list">' . $LANG['reset_view'] . '</a>';
        }
        echo '</div>';
        if ($p['results']) {
            echo '<form action="?route=payments.php&amp;action=list" method="POST">

<ul class="elements-list">

<li class="head"><input type="checkbox" checkall /> ' . $LANG['name'] . '</li>';
            $ab_edt = ab_to(array('payments' => 'edit'));
            $ab_del = $GLOBALS['me']->is_admin;
            if ($ab_edt) {
                echo '<div class="bulk_options">';