本文整理汇总了PHP中Wiki::get_nobots方法的典型用法代码示例。如果您正苦于以下问题:PHP Wiki::get_nobots方法的具体用法?PHP Wiki::get_nobots怎么用?PHP Wiki::get_nobots使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Wiki
的用法示例。
在下文中一共展示了Wiki::get_nobots方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkExclusion
/**
* Detects the presence of a nobots template or one that denies editing by ours
*
* @access public
* @param Wiki $wiki Wiki class
* @param string $text Text of the page to check (default: '')
* @param string $pgUsername Username to search for in the template (default: null)
* @param string|null $optout Text to search for in the optout= parameter. (default: null)
* @param string|null $taskname (default: null)
* @return bool True on match of an appropriate nobots template
*/
function checkExclusion(Wiki $wiki, $text = '', $pgUsername = null, $optout = null, $taskname = null)
{
if (!$wiki->get_nobots()) {
return false;
}
if (in_string("{{nobots}}", $text)) {
return true;
}
if (in_string("{{bots}}", $text)) {
return false;
}
if (preg_match('/\\{\\{bots\\s*\\|\\s*allow\\s*=\\s*(.*?)\\s*\\}\\}/i', $text, $allow)) {
if ($allow[1] == "all") {
return false;
}
if ($allow[1] == "none") {
return true;
}
$allow = array_map('trim', explode(',', $allow[1]));
if (!is_null($pgUsername) && in_array(trim($pgUsername), $allow)) {
return false;
}
return true;
}
if (preg_match('/\\{\\{(no)?bots\\s*\\|\\s*deny\\s*=\\s*(.*?)\\s*\\}\\}/i', $text, $deny)) {
if ($deny[2] == "all") {
return true;
}
if ($deny[2] == "none") {
return false;
}
$allow = array_map('trim', explode(',', $deny[2]));
if (!is_null($pgUsername) && in_array(trim($pgUsername), $allow) || !is_null($taskname) && in_array(trim($taskname), $allow)) {
return true;
}
return false;
}
if (!is_null($optout) && preg_match('/\\{\\{(no)?bots\\s*\\|\\s*optout\\s*=\\s*(.*?)\\s*\\}\\}/i', $text, $allow)) {
if ($allow[1] == "all") {
return true;
}
$allow = array_map('trim', explode(',', $allow[2]));
if (in_array(trim($optout), $allow)) {
return true;
}
return false;
}
return false;
}