當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WP_List_Table::search_box方法代碼示例

本文整理匯總了PHP中WP_List_Table::search_box方法的典型用法代碼示例。如果您正苦於以下問題:PHP WP_List_Table::search_box方法的具體用法?PHP WP_List_Table::search_box怎麽用?PHP WP_List_Table::search_box使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WP_List_Table的用法示例。


在下文中一共展示了WP_List_Table::search_box方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: search_box

 public function search_box($text, $input_id)
 {
     if (!$this->search_box) {
         return '';
     }
     parent::search_box($text, $input_id);
 }
開發者ID:dreamteam111,項目名稱:dreamteam,代碼行數:7,代碼來源:purchase-log-list-table-class.php

示例2: render

    /**
     * Render the view.
     */
    public function render()
    {
        ?>

		<form method="GET">
			<input type="hidden" name="page" value="<?php 
        echo esc_attr($_GET['page']);
        ?>
">

			<?php 
        if (isset($_GET['status'])) {
            ?>
				<input type="hidden" name="status" value="<?php 
            echo esc_attr($_GET['status']);
            ?>
">
			<?php 
        }
        ?>

			<?php 
        $this->table->views();
        ?>
			<?php 
        $this->table->search_box(__("Search", Plugin::SLUG), 'itelic-search');
        ?>
			<?php 
        $this->table->display();
        ?>
		</form>

		<?php 
    }
開發者ID:pemiu01,項目名稱:exchange-addon-licensing,代碼行數:37,代碼來源:ListV.php

示例3: search_box

 /**
  * Displays the search box if it was enabled in table arguments.
  *
  * @since 4.0.0
  *
  * @access public
  * @param string $text The search button text.
  * @param string $input_id The search input id.
  */
 public function search_box($text, $input_id)
 {
     if (isset($this->_args['search_box']) && $this->_args['search_box']) {
         parent::search_box($text, $input_id);
     }
 }
開發者ID:m-godefroid76,項目名稱:devrestofactory,代碼行數:15,代碼來源:Table.php

示例4: search_box

 /**
  * Display search box.
  *
  * @since 141111 First documented version.
  *
  * @param string $text     The search button `value=""`.
  *                         This will default to a value of `Search`.
  * @param string $input_id The search input `id=""` attribute.
  *                         This parameter is always forced to an id-compatible value.
  *                         This will default to a value of `get_class($this).'::'.__FUNCTION__`.
  *
  * @throws \exception If unable to do `name="search-submit"` replacement.
  */
 public function search_box($text = '', $input_id = '')
 {
     // @codingStandardsIgnoreEnd
     if (!$this->getFtSearchableColumns() && !$this->getSearchableColumns() && !$this->getNavigableFilters()) {
         return;
         // Not applicable.
     }
     $text = (string) $text;
     $input_id = (string) $input_id;
     $text = !$text ? __('Search', 'comment-mail') : esc_html($text);
     $input_id = !$input_id ? get_class($this) . '::' . __FUNCTION__ : $input_id;
     $input_id = trim(preg_replace('/[^a-z0-9\\-]/i', '-', $input_id), '-');
     ob_start();
     // Open an output buffer.
     parent::search_box($text, $input_id);
     $search_box = ob_get_clean();
     $regex = '/\\b(?:name\\s*\\=\\s*(["\']).*?\\1\\s+)?id\\s*\\=\\s*(["\'])search\\-submit\\2/i';
     if ($search_box) {
         // Only if there is a search box; it doesn't always display.
         if (!($search_box = preg_replace($regex, 'name="search-submit" id="search-submit"', $search_box, 1, $replacements)) || !$replacements) {
             throw new \exception(__('Unable to set `name="search-submit"` attribute.', 'comment-mail'));
         }
     }
     echo $search_box;
     // Display.
 }
開發者ID:websharks,項目名稱:comment-mail,代碼行數:39,代碼來源:MenuPageTableBase.php

示例5: search_box

 /**
  * Display the search box.
  *
  * @param string $text The search button text
  * @param string $input_id The search input id
  */
 public function search_box($text, $input_id)
 {
     if ($this->get_current_view() != 'related') {
         parent::search_box($text, $input_id);
     }
 }
開發者ID:amprog,項目名稱:relatedpostsforwp,代碼行數:12,代碼來源:class-link-related-table.php

示例6: search_box

 public function search_box($text, $input_id)
 {
     return parent::search_box($text, $input_id);
     // TODO: Change the autogenerated stub
 }
開發者ID:chbiel,項目名稱:wp-emergency-overview,代碼行數:5,代碼來源:Table.php

示例7:

 function search_box($text, $input_id)
 {
     $this->search_box_called = true;
     parent::search_box($text, $input_id);
     $this->search_box_called = false;
 }
開發者ID:brooklyntri,項目名稱:btc-plugins,代碼行數:6,代碼來源:class-manage-content-table.php

示例8:

 /**
  * Display Search box
  *
  * @since 1.4
  * @returns html Search Form
  */
 function search_box($text, $input_id)
 {
     parent::search_box($text, $input_id);
 }
開發者ID:adrianjonmiller,項目名稱:animalhealth,代碼行數:10,代碼來源:class-entries-list.php


注:本文中的WP_List_Table::search_box方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。