mirror of
https://github.com/felixfoertsch/wordpress-dev-env.git
synced 2026-04-16 14:28:40 +02:00
17 lines
561 B
PHP
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>
|