本文整理汇总了PHP中Articles::search_in_section方法的典型用法代码示例。如果您正苦于以下问题:PHP Articles::search_in_section方法的具体用法?PHP Articles::search_in_section怎么用?PHP Articles::search_in_section使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Articles
的用法示例。
在下文中一共展示了Articles::search_in_section方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$fields[] = array($label, $input, $hint);
// build the form
$context['text'] .= Skin::build_form($fields);
$fields = array();
// the form to submit a new search
$context['text'] .= '</div></form>';
// the script used for form handling at the browser
Page::insert_script(' func' . 'tion validateDocumentPost(container) {' . "\n" . ' if(!container.search.value) {' . "\n" . ' alert("' . i18n::s('Please type something to search for.') . '");' . "\n" . ' Yacs.stopWorking();' . "\n" . ' return false;' . "\n" . ' }' . "\n" . ' return true;' . "\n" . ' }' . "\n" . "\n" . '$("#search").focus();' . "\n");
// various panels
$panels = array();
// all results, as array($score, $summary)
$result = array();
// number of results per page
$bucket = 20;
// search in articles
if ($items = Articles::search_in_section($section_id, $boolean_search, $offset, $bucket)) {
$result = array_merge($result, $items);
}
// search in sections
if ($items = Sections::search_in_section($section_id, $boolean_search, $offset, $bucket)) {
$result = array_merge($result, $items);
}
// global search
if (!$section_id) {
// search in categories
if ($items = Categories::search($boolean_search, $offset, $bucket)) {
$result = array_merge($result, $items);
}
// search in files
if ($items = Files::search($boolean_search, $offset, $bucket)) {
$result = array_merge($result, $items);
示例2:
/**
* search for some keywords in all articles
*
* @see search.php
* @see services/search.php
* @see categories/set_keyword.php
*
* @param string the search string
* @param float maximum score to look at
* @param int the number of items to display
* @param mixed the layout, if any
* @return NULL on error, else an ordered array of array($score, $summary)
*/
public static function &search($pattern, $offset = 1.0, $count = 50, $layout = 'search')
{
global $context;
$output =& Articles::search_in_section(NULL, $pattern, $offset, $count, $layout);
return $output;
}