本文整理匯總了PHP中admin_setting_configselect::is_related方法的典型用法代碼示例。如果您正苦於以下問題:PHP admin_setting_configselect::is_related方法的具體用法?PHP admin_setting_configselect::is_related怎麽用?PHP admin_setting_configselect::is_related使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類admin_setting_configselect
的用法示例。
在下文中一共展示了admin_setting_configselect::is_related方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: is_related
/**
* Is setting related to query text - used when searching
*
* @param string $query
* @return bool true if related, false if not
*/
public function is_related($query)
{
if (!$this->load_choices() or empty($this->choices)) {
return false;
}
if (parent::is_related($query)) {
return true;
}
$textlib = textlib_get_instance();
foreach ($this->choices as $desc) {
if (strpos($textlib->strtolower($desc), $query) !== false) {
return true;
}
}
return false;
}
示例2: is_related
/**
* Is setting related to query text - used when searching
*
* @param string $query
* @return bool true if related, false if not
*/
public function is_related($query)
{
if (!$this->load_choices() or empty($this->choices)) {
return false;
}
if (parent::is_related($query)) {
return true;
}
foreach ($this->choices as $desc) {
if (strpos(core_text::strtolower($desc), $query) !== false) {
return true;
}
}
return false;
}