Exemplo n.º 1
0
 public static function subscribers($categories = array())
 {
     return admin_query::have_subscribers($categories, array('only_count' => ''));
 }
Exemplo n.º 2
0
<form action="#" method="GET" autocomplete="off">
<input type="hidden" name="route" value="users.php" />
<input type="hidden" name="action" value="subscribers" />';
        if (isset($_GET['orderby'])) {
            echo '<input type="hidden" name="orderby" value="' . htmlspecialchars($_GET['orderby']) . '" />';
        }
        if (isset($_GET['view'])) {
            echo '<input type="hidden" name="view" value="' . htmlspecialchars($_GET['view']) . '" />';
        }
        echo '<input type="search" name="search" value="' . (isset($_GET['search']) ? htmlspecialchars($_GET['search']) : '') . '" placeholder="' . $LANG['subscribers_search_input'] . '" />
<button class="btn">' . $LANG['search'] . '</button>
</form>

</div>';
        $p = admin_query::have_subscribers($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 (isset($_GET['view']) || !empty($_GET['search'])) {
            echo ' / <a href="?route=users.php&amp;action=subscribers">' . $LANG['reset_view'] . '</a>';
        }
        echo '</div>';
        if ($p['results']) {
            echo '<form action="?route=users.php&amp;action=subscribers" method="POST">

<ul class="elements-list">

<li class="head"><input type="checkbox" checkall /> ' . $LANG['name'] . '</li>';
            $ab_edt = ab_to(array('subscribers' => 'edit'));
            $ab_del = ab_to(array('subscribers' => 'delete'));
            $ab_sm = ab_to(array('mail' => 'send'));
            if ($ab_edt || $ab_del) {