| @@ 274-307 (lines=34) @@ | ||
| 271 | /** |
|
| 272 | * search_form |
|
| 273 | */ |
|
| 274 | public function search_form() |
|
| 275 | { |
|
| 276 | ?> |
|
| 277 | <form class="ajax-form" id="<?php echo $this->plugin_slug; ?>-search-form" method="get" action="tools.php" |
|
| 278 | data-type="<?php echo $this->tab_slug; ?>"> |
|
| 279 | <input type="hidden" name="page" value="<?php echo $this->tab_slug; ?>"/> |
|
| 280 | ||
| 281 | <h3><span class="dashicons dashicons-search"></span> <?php _e('Search', 'wetu-importer'); ?></h3> |
|
| 282 | <div class="normal-search"> |
|
| 283 | <input pattern=".{3,}" placeholder="3 characters minimum" class="keyword" name="keyword" value=""> |
|
| 284 | <input class="button button-primary submit" type="submit" |
|
| 285 | value="<?php _e('Search', 'wetu-importer'); ?>"/> |
|
| 286 | </div> |
|
| 287 | ||
| 288 | ||
| 289 | <div class="advanced-search hidden" style="display:none;"> |
|
| 290 | <p><?php _e('Enter several keywords, each on a new line.', 'wetu-importer'); ?></p> |
|
| 291 | <textarea rows="10" cols="40" name="bulk-keywords"></textarea> |
|
| 292 | <input class="button button-primary submit" type="submit" |
|
| 293 | value="<?php _e('Search', 'wetu-importer'); ?>"/> |
|
| 294 | </div> |
|
| 295 | ||
| 296 | <p> |
|
| 297 | <a class="advanced-search-toggle" href="#"><?php _e('Bulk Search', 'wetu-importer'); ?></a> | |
|
| 298 | <a class="published search-toggle" |
|
| 299 | href="#publish"><?php esc_attr_e('Published', 'wetu-importer'); ?></a> | |
|
| 300 | <a class="pending search-toggle" href="#pending"><?php esc_attr_e('Pending', 'wetu-importer'); ?></a> | |
|
| 301 | <a class="draft search-toggle" href="#draft"><?php esc_attr_e('Draft', 'wetu-importer'); ?></a> |
|
| 302 | </p> |
|
| 303 | ||
| 304 | <div class="ajax-loader" style="display:none;width:100%;text-align:center;"> |
|
| 305 | <img style="width:64px;" src="<?php echo WETU_IMPORTER_URL . 'assets/images/ajaxloader.gif'; ?>"/> |
|
| 306 | </div> |
|
| 307 | ||
| 308 | <div class="ajax-loader-small" style="display:none;width:100%;text-align:center;"> |
|
| 309 | <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL . 'assets/images/ajaxloader.gif'; ?>"/> |
|
| 310 | </div> |
|
| @@ 391-423 (lines=33) @@ | ||
| 388 | /** |
|
| 389 | * search_form |
|
| 390 | */ |
|
| 391 | public function search_form() { |
|
| 392 | ?> |
|
| 393 | <form class="ajax-form" id="<?php echo $this->plugin_slug; ?>-search-form" method="get" action="tools.php" data-type="<?php echo $this->tab_slug; ?>"> |
|
| 394 | <input type="hidden" name="page" value="<?php echo $this->tab_slug; ?>" /> |
|
| 395 | ||
| 396 | <h3><span class="dashicons dashicons-search"></span> <?php _e('Search','wetu-importer'); ?></h3> |
|
| 397 | <div class="normal-search"> |
|
| 398 | <input pattern=".{3,}" placeholder="3 characters minimum" class="keyword" name="keyword" value=""> <input class="button button-primary submit" type="submit" value="<?php _e('Search','wetu-importer'); ?>" /> |
|
| 399 | </div> |
|
| 400 | <div class="advanced-search hidden" style="display:none;"> |
|
| 401 | <p><?php _e('Enter several keywords, each on a new line.','wetu-importer'); ?></p> |
|
| 402 | <textarea rows="10" cols="40" name="bulk-keywords"></textarea> |
|
| 403 | <input class="button button-primary submit" type="submit" value="<?php _e('Search','wetu-importer'); ?>" /> |
|
| 404 | </div> |
|
| 405 | ||
| 406 | <p> |
|
| 407 | <a class="advanced-search-toggle" href="#"><?php _e('Bulk Search','wetu-importer'); ?></a> | |
|
| 408 | <a class="published search-toggle" href="#publish"><?php esc_attr_e('Published','wetu-importer'); ?></a> | |
|
| 409 | <a class="pending search-toggle" href="#pending"><?php esc_attr_e('Pending','wetu-importer'); ?></a> | |
|
| 410 | <a class="draft search-toggle" href="#draft"><?php esc_attr_e('Draft','wetu-importer'); ?></a> | |
|
| 411 | <a class="import search-toggle" href="#import"><?php esc_attr_e('WETU','wetu-importer'); ?></a> |
|
| 412 | </p> |
|
| 413 | ||
| 414 | <div class="ajax-loader" style="display:none;width:100%;text-align:center;"> |
|
| 415 | <img style="width:64px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif';?>" /> |
|
| 416 | </div> |
|
| 417 | ||
| 418 | <div class="ajax-loader-small" style="display:none;width:100%;text-align:center;"> |
|
| 419 | <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif';?>" /> |
|
| 420 | </div> |
|
| 421 | </form> |
|
| 422 | <?php |
|
| 423 | } |
|
| 424 | ||
| 425 | /** |
|
| 426 | * The header of the item list |
|