File "search.php"
Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/contact-form-7-database/admin/search.php
File size: 578 bytes
MIME-type: --
Charset: utf-8
<?php
if (!defined('ABSPATH')) {
exit('Direct\'s not allowed');
}
add_action('cf7d_after_bulkaction_btn', 'cf7d_after_bulkaction_search_cb', 40);
function cf7d_after_bulkaction_search_cb()
{
$url = admin_url('admin.php?page=cf7-data');
?>
<input value="<?php echo ((isset($_GET['search'])) ? $_GET['search'] : ''); ?>" type="text" class="" id="cf7d-search-q" placeholder="<?php echo _e('Type something...'); ?>" id="" />
<button data-url="<?php echo $url; ?>" class="button" type="button" id="cf7d-search-btn"><?php _e('Search'); ?></button>
<?php
}