本文整理汇总了PHP中Section::getSearchSource方法的典型用法代码示例。如果您正苦于以下问题:PHP Section::getSearchSource方法的具体用法?PHP Section::getSearchSource怎么用?PHP Section::getSearchSource使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Section
的用法示例。
在下文中一共展示了Section::getSearchSource方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Section
function nav_sub_section($type,$sort) {
$finder= new Section(AMP_Registry::getDbcon());
if(isset($sort) && $sort){
$finder_source = &$finder->getSearchSource();
$finder_source->addSort($sort);
}
$sections = $finder->find(array('parent'=>$type,'displayable'=>'1'));
if (!$sections) return;
$html = '<ul>';
foreach($sections as $section) {
$html .= '<li><a href="section.php?id='.$section->id.'">'.$section->getName().'</a><img src="img/spacer.gif" height="4" width="3" align="left"> </li>';
}
$html .= '</ul>';
return $html;
}
示例2: Section
function nav_sub_section($type, $sort)
{
$finder = new Section(AMP_Registry::getDbcon());
if (isset($sort) && $sort) {
$finder_source =& $finder->getSearchSource();
$finder_source->addSort($sort);
}
$sections = $finder->find(array('parent' => $type, 'displayable' => '1'));
if (!$sections) {
return;
}
$html = '<ul>';
foreach ($sections as $section) {
if (AMP_CONTENT_HUMANIZE_URLS) {
$sectionURL = AMP_url_update('section.php', array('id' => $section->id));
} else {
$sectionURL = 'section.php?id=' . $section->id;
}
$html .= '<li><a href="' . $sectionURL . '">' . $section->getName() . '</a><img src="img/spacer.gif" height="4" width="3" align="left"> </li>';
}
$html .= '</ul>';
return $html;
}