File manager - Edit - /home/adiance/public_html/beta/wp-content/plugins/snazzy-maps/admin/explore.php
Back
<?php namespace SnazzyMaps; defined( 'ABSPATH' ) OR exit; class SnazzyMaps_Explore { public static function render_options($options, $selected){ foreach((array)$options as $value => $text){ ?> <option value="<?php echo esc_attr($value);?>" <?php echo esc_attr($value == $selected ? 'selected' : '') ?>> <?php echo esc_html($text);?> </option> <?php } } public static function admin_explore_head($tab){ } public static function admin_explore_tab($tab){ $sort = isset($_GET['sort']) ? sanitize_text_field($_GET['sort']) : ''; $tag = isset($_GET['tag']) ? sanitize_text_field($_GET['tag']) : ''; $color = isset($_GET['color']) ? sanitize_text_field($_GET['color']) : ''; $type = isset($_GET['type']) ? sanitize_text_field($_GET['type']) : 'all'; $text = isset($_GET['text']) ? sanitize_text_field($_GET['text']) : ''; ?> <div id="explore-list"> <form id="search-form" class="clearfix"> <div class="search-box"> <input name="text" type="text" placeholder="Search..." value="<?php echo esc_attr($text) ?>"/> <button class="button" type="submit">Search Styles</button> </div> </form> <div id="filters" class="clearfix"> <select name="type"> <?php $options = array("all" => "All Styles", "my-styles" => "My Styles", "my-favorites" => "My Favorites"); \SnazzyMaps\SnazzyMaps_Explore::render_options($options, $type); ?> </select> <select name="sort"> <option value="">Sort by...</option> <?php $options = array("popular" => "Popular", "recent" => "Recent", "name" => "Name"); \SnazzyMaps\SnazzyMaps_Explore::render_options($options, $sort); ?> </select> <select name="tag"> <option value="">Filter by Tag</option> <?php $options = array("colorful" => "Colorful", "complex" => "Complex", "dark" => "Dark", "greyscale" => "Greyscale", "light" => "Light", "monochrome" => "Monochrome", "no-labels" => "No Labels", "simple" => "Simple", "two-tone" => "Dark", "dark" => "Two Tone"); \SnazzyMaps\SnazzyMaps_Explore::render_options($options, $tag); ?> </select> <select name="color"> <option value="">Filter By Color</option> <?php $options = array("black" => "Black", "blue" => "Blue", "gray" => "Gray", "green" => "Green", "multi" => "Multi", "orange" => "Orange", "purple" => "Purple", "red" => "Red", "white" => "White", "yellow" => "Yellow"); \SnazzyMaps\SnazzyMaps_Explore::render_options($options, $color); ?> </select> </div> <div class="tablenav top clearfix"> <div class="tablenav-pages"> <span class="displaying-num"># items</span> <span class="pagination-links"> <a class="first-page" title="Go to the first page" href="#">«</a> <a class="prev-page" title="Go to the previous page" href="#">‹</a> <span class="paging-input"> <label for="current-page-selector" class="screen-reader-text">Select Page</label> <input class="current-page" id="current-page-selector" title="Current page" type="text" name="paged" value="1" size="1"> of <span class="total-pages">#</span> </span> <a class="next-page" title="Go to the next page" href="#">›</a> <a class="last-page" title="Go to the last page" href="#">»</a> </span> </div> </div> <div class="results row"> </div> <div class="search-error nothing" style="display:none;"> <p>No styles were found matching your current filters. Try widening your search a bit!</p> </div> <div class="tablenav bottom clearfix"> <div class="tablenav-pages"> <span class="displaying-num"># items</span> <span class="pagination-links"> <a class="first-page" title="Go to the first page" href="#">«</a> <a class="prev-page" title="Go to the previous page" href="#">‹</a> <span class="paging-input"> <label for="current-page-selector" class="screen-reader-text">Select Page</label> <input class="current-page" id="current-page-selector" title="Current page" type="text" name="paged" value="1" size="1"> of <span class="total-pages">#</span> </span> <a class="next-page" title="Go to the next page" href="#">›</a> <a class="last-page" title="Go to the last page" href="#">»</a> </span> </div> </div> </div> <?php } } ?>
| ver. 1.4 |
Github
|
.
| PHP 7.3.33 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings