function have_items($category = array()) { $GLOBALS['have_items'] = \query\main::have_reviews($category, 'store'); /* ACTIVATE PAGES INFORMATIONS IF FUNCTION have_items() IS CALLED */ /* NUMBER OF RESULTS */ function results() { return $GLOBALS['have_items']['results']; } /* THIS PAGE IS */ function page() { return $GLOBALS['have_items']['page']; } /* NUMBER OF PAGES */ function pages() { return $GLOBALS['have_items']['pages']; } /* NEXT PAGE */ function next_page() { if (!empty($GLOBALS['have_items']['next_page'])) { return $GLOBALS['have_items']['next_page']; } return false; } /* PREVIEW PAGE */ function prev_page() { if (!empty($GLOBALS['have_items']['prev_page'])) { return $GLOBALS['have_items']['prev_page']; } return false; } return $GLOBALS['have_items']['results']; }
function have_reviews_custom($category = array()) { return \query\main::have_reviews($category); }
public static function reviews($categories = array()) { return \query\main::have_reviews($categories, '', array('only_count' => '')); }
<form action="#" method="GET" autocomplete="off"> <input type="hidden" name="route" value="reviews.php" /> <input type="hidden" name="action" value="list" />'; 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['reviews_search_input'] . '" /> <button class="btn">' . $LANG['search'] . '</button> </form> </div>'; $p = \query\main::have_reviews($options = array('per_page' => 10, 'store' => isset($_GET['store']) ? $_GET['store'] : '', 'user' => isset($_GET['user']) ? $_GET['user'] : '', 'show' => isset($_GET['view']) ? $_GET['view'] : 'all', '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['store']) || !empty($_GET['user']) || isset($_GET['view']) || !empty($_GET['search'])) { echo ' / <a href="?route=reviews.php&action=list">' . $LANG['reset_view'] . '</a>'; } echo '</div>'; if ($p['results']) { echo '<form action="?route=reviews.php&action=list" method="POST"> <ul class="elements-list"> <li class="head"><input type="checkbox" checkall /> ' . $LANG['name'] . '</li>'; $ab_edt = ab_to(array('reviews' => 'edit')); $ab_del = ab_to(array('reviews' => 'delete')); if ($ab_edt || $ab_del) { echo '<div class="bulk_options">';
function have_reviews($category = array()) { return \query\main::have_reviews($category, 'store'); }