Files
wordpress-dev-env/wordpress_plugins/debug-bar-cache-lookup/views/searchform.php
Felix Förtsch 648ded8896 Initial commit
2020-10-20 14:39:50 +02:00

17 lines
561 B
PHP

<?php /** View for the search form. **/ ?>
<div id="dbcl_panel">
<form id="dbcl_form">
<p>Enter the cache key and cache group:</p>
<p>
<label for="dbcl_key">Key:</label>
<input type="text" id="dbcl_key" name="dbcl_key"> <small>(Example: alloptions)</small>
</p>
<p>
<label for="dbcl_group">Group:</label>
<input type="text" id="dbcl_group" name="dbcl_group"> <small>(Example: options)</small>
</p>
<p class="center"><input type="submit" value="Lookup" class="button button-primary"></p>
</form><br/>
<pre id="dbcl_results"></pre>
</div>