当前位置: 首页>>代码示例>>PHP>>正文


PHP Wiki::get_nobots方法代码示例

本文整理汇总了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;
}
开发者ID:emijrp,项目名称:Peachy,代码行数:60,代码来源:GenFunctions.php


注:本文中的Wiki::get_nobots方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。